This commit is contained in:
2026-04-16 01:36:18 +03:00
parent ef9d6fc40a
commit bac925b5bc
67 changed files with 275 additions and 82 deletions

14
app/hizmetler/layout.tsx Normal file
View File

@@ -0,0 +1,14 @@
import { Metadata } from "next";
export const metadata: Metadata = {
title: "Profesyonel Vinç ve Nakliyat Hizmetlerimiz | Dalaman Muğla",
description: "Mobil vinç, sepetli platform, konteyner taşıma, tekne kaldırma ve ağır nakliyat hizmetlerimizi inceleyin. 7/24 profesyonel çözümler.",
};
export default function ServicesLayout({
children,
}: {
children: React.ReactNode;
}) {
return <>{children}</>;
}