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

15 lines
427 B
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 { 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}</>;
}