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