Update app/page.tsx
This commit is contained in:
parent
4bf91a9b36
commit
96e2c472bf
|
|
@ -0,0 +1,15 @@
|
|||
import { Hero } from "@/components/hero";
|
||||
import { Features } from "@/components/features";
|
||||
import { ContactForm } from "@/components/contact-form";
|
||||
import { Footer } from "@/components/footer";
|
||||
|
||||
export default function Home() {
|
||||
return (
|
||||
<main className="min-h-screen">
|
||||
<Hero />
|
||||
<Features />
|
||||
<ContactForm />
|
||||
<Footer />
|
||||
</main>
|
||||
);
|
||||
}
|
||||
Loading…
Reference in New Issue