app-whispering-pangolin-scurry/app/page.tsx

16 lines
368 B
TypeScript

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>
);
}