diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4dd7a8a..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1417 +0,0 @@ -import type { Metadata } from "next"; -import { Mulish } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "Deniz Digital - Profesyonel Web Sitesi Tasarımı", description: "İşletmenizi dijital Türkiye'ye taşıyoruz. Profesyonel web sitesi tasarımı, hızlı kurulum ve Google optimizasyonu. Sabit fiyat: 5.000 TL.", keywords: "web tasarımı, dijital ajans, web geliştirme, Türkiye, profesyonel web sitesi", metadataBase: new URL("https://denizdigital.com"), - alternates: { - canonical: "https://denizdigital.com" - }, - openGraph: { - title: "Deniz Digital - Web Tasarımı ve Dijital Çözümler", description: "İşletmenizi dijital Türkiye'ye taşıyoruz. Profesyonel, mobil uyumlu web siteleri.", url: "https://denizdigital.com", siteName: "Deniz Digital", type: "website" - }, - twitter: { - card: "summary_large_image", title: "Deniz Digital - Profesyonel Web Sitesi", description: "Dijital çözümler ve web tasarımı hizmetleri" - }, - robots: { - index: true, - follow: true - } -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -