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",
|
||
description: "Dalaman ve Muğla genelinde 7/24 vinç kiralama, ağır nakliyat, tekne taşıma ve konteyner nakliyesi. Güçlü filo, uzman kadro ve uygun fiyatlı çözümler.",
|
||
};
|
||
|
||
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>
|
||
);
|
||
}
|