24 lines
709 B
TypeScript
24 lines
709 B
TypeScript
|
|
import Footer from "@/components/landing-page/footer";
|
||
|
|
import Header from "@/components/landing-page/header";
|
||
|
|
import Items from "@/components/landing-page/items";
|
||
|
|
import Navbar from "@/components/landing-page/navbar";
|
||
|
|
import Video from "@/components/landing-page/video";
|
||
|
|
import Agent from "@/components/landing-page/agent";
|
||
|
|
|
||
|
|
export default function Home() {
|
||
|
|
return (
|
||
|
|
<div className="relative min-h-screen font-[family-name:var(--font-geist-sans)]">
|
||
|
|
<div className="relative z-10 bg-white w-full mx-auto">
|
||
|
|
<Navbar />
|
||
|
|
<div className="flex-1">
|
||
|
|
<Header />
|
||
|
|
</div>
|
||
|
|
<Items />
|
||
|
|
<Video />
|
||
|
|
<Agent />
|
||
|
|
<Footer />
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|