app-vibrant-axolotl-glow/app/page.tsx

16 lines
377 B
TypeScript

import { Hero } from "@/components/hero";
import { Services } from "@/components/services";
import { ContactSection } from "@/components/contact-section";
import { Footer } from "@/components/footer";
export default function Home() {
return (
<main className="min-h-screen">
<Hero />
<Services />
<ContactSection />
<Footer />
</main>
);
}