18 lines
538 B
TypeScript
18 lines
538 B
TypeScript
|
|
import Agent from "@/components/landing-page/agent";
|
||
|
|
import Footer from "@/components/landing-page/footer";
|
||
|
|
import HeaderAbout from "@/components/landing-page/header-about";
|
||
|
|
import Navbar from "@/components/landing-page/navbar";
|
||
|
|
|
||
|
|
export default function AboutPage() {
|
||
|
|
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 />
|
||
|
|
<HeaderAbout />
|
||
|
|
<Agent />
|
||
|
|
<Footer />
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|