17 lines
472 B
TypeScript
17 lines
472 B
TypeScript
import Footer from "@/components/landing-page/footer";
|
|
import Navbar from "@/components/landing-page/navbar";
|
|
import SosmedSection from "@/components/landing-page/social-media";
|
|
|
|
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 />
|
|
<SosmedSection />
|
|
|
|
<Footer />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|