Files
aydogannakliyat/app/page.tsx
2026-04-12 13:17:43 +03:00

32 lines
1.2 KiB
TypeScript
Raw 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",
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>
);
}