jaecoo-cihampelas/app/service/page.tsx

21 lines
648 B
TypeScript
Raw Normal View History

2025-07-13 07:48:15 +00:00
import Footer from "@/components/landing-page/footer";
import HeaderItems from "@/components/landing-page/header-item";
import Navbar from "@/components/landing-page/navbar";
import NearestLocation from "@/components/landing-page/nearest-location";
import Service from "@/components/landing-page/service";
export default function ServicePage() {
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 />
<HeaderItems />
<Service />
<NearestLocation />
<Footer />
</div>
</div>
);
}