25 lines
787 B
TypeScript
25 lines
787 B
TypeScript
import Header from "@/components/landing-page/headers";
|
|
import AboutSection from "@/components/landing-page/about";
|
|
import ProductSection from "@/components/landing-page/product";
|
|
import ServiceSection from "@/components/landing-page/service";
|
|
import Technology from "@/components/landing-page/technology";
|
|
import Footer from "@/components/landing-page/footer";
|
|
import FloatingMenu from "@/components/landing-page/floating";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div className="relative min-h-screen bg-white font-[family-name:var(--font-geist-sans)]">
|
|
{/* FIXED MENU */}
|
|
<FloatingMenu />
|
|
|
|
{/* PAGE CONTENT */}
|
|
<Header />
|
|
<AboutSection />
|
|
<ProductSection />
|
|
<ServiceSection />
|
|
<Technology />
|
|
<Footer />
|
|
</div>
|
|
);
|
|
}
|