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