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