Update app/page.tsx
This commit is contained in:
parent
99195e386d
commit
d7b8816468
|
|
@ -0,0 +1,15 @@
|
||||||
|
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>
|
||||||
|
);
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue