diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 45ef312..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,2795 +0,0 @@ -import type { Metadata } from "next"; -import { Inter_Tight } from "next/font/google"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "CSA Spor Salonu - Kadınlara Özel Fitness Merkezi", description: "Sadece kadınlara özel, profesyonel antrenörlü, modern ekipmanları olan güvenli fitness merkezi. Gücünü keşfet ve hayatını değiştir.", keywords: "kadın fitness, spor salonu İstanbul, yoga, pilates, kişisel antrenörlük, sağlık", metadataBase: new URL("https://csasporsal.com"), - alternates: { - canonical: "https://csasporsal.com" - }, - openGraph: { - title: "CSA Spor Salonu - Kadınlara Özel Fitness Merkezi", description: "Güvenli, rahat ve motivasyonlu ortamda gücünü keşfet. Profesyonel antrenörler ve modern ekipmanlarla hayal ettiğin dönüşümü başlat.", type: "website", siteName: "CSA Spor Salonu", url: "https://csasporsal.com", images: [ - { - url: "http://img.b2bpic.net/free-photo/young-women-taking-part-spinning-class_23-2149332047.jpg", alt: "CSA Spor Salonu - Kadın Fitness Merkezi" - } - ] - }, - twitter: { - card: "summary_large_image", title: "CSA Spor Salonu - Kadınlara Özel Fitness Merkezi", description: "Güvenli ortamda antrenman yap ve gücünü keşfet!", images: ["http://img.b2bpic.net/free-photo/young-women-taking-part-spinning-class_23-2149332047.jpg"] - }, - robots: { - index: true, - follow: true - } -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -