32 lines
1.2 KiB
TypeScript
32 lines
1.2 KiB
TypeScript
import { Navbar } from "@/components/Navbar";
|
|
import { Hero } from "@/components/Hero";
|
|
import { StatsGrid } from "@/components/StatsGrid";
|
|
import { ServicesPreview } from "@/components/ServicesPreview";
|
|
import { FleetSection } from "@/components/FleetSection";
|
|
import { LoadMeterSection } from "@/components/LoadMeterSection";
|
|
import { CTASection } from "@/components/CTASection";
|
|
import { Footer } from "@/components/Footer";
|
|
import { FloatingWhatsApp } from "@/components/FloatingWhatsApp";
|
|
import { Metadata } from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Aydoğan Nakliyat Vinç | Dalaman Muğla Vinç Kiralama & Ağır Nakliyat",
|
|
description: "Dalaman ve Muğla genelinde 7/24 profesyonel vinç kiralama, ağır nakliyat, tekne ve tiny house taşıma hizmetleri. Güçlü filo ve uzman kadro.",
|
|
};
|
|
|
|
export default function Home() {
|
|
return (
|
|
<main className="relative min-h-screen flex flex-col bg-background selection:bg-primary selection:text-on-primary">
|
|
<Navbar />
|
|
<Hero />
|
|
<StatsGrid />
|
|
<ServicesPreview />
|
|
<FleetSection />
|
|
<LoadMeterSection />
|
|
<CTASection />
|
|
<Footer />
|
|
<FloatingWhatsApp />
|
|
</main>
|
|
);
|
|
}
|