app-sincere-parrot-bop/app/page.tsx

14 lines
301 B
TypeScript

import { Hero } from "@/components/hero";
import { Features } from "@/components/features";
import { Footer } from "@/components/footer";
export default function Home() {
return (
<div className="flex flex-col min-h-screen">
<Hero />
<Features />
<Footer />
</div>
);
}