Files
aydogannakliyat/app/page.tsx
2026-04-16 01:36:18 +03:00

32 lines
1.2 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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>
);
}