diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 61aa50a..7ee5075 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,44 +1,21 @@ -import type { Metadata } from "next"; -import { Open_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); +import type { Metadata } from 'next'; export const metadata: Metadata = { - title: "Emlak Konutları Başakşehir | Luxury Residential Living in Istanbul", description: "Experience premium residential living in Başakşehir. 2,599 modern residences with 85% green landscape, 24/7 security, and architectural excellence. Where nature meets luxury.", keywords: "luxury apartments Istanbul, Başakşehir residences, modern residential complex, eco-friendly living, Turkish real estate", metadataBase: new URL("https://emlakkonutlari.com"), - alternates: { - canonical: "https://emlakkonutlari.com"}, - openGraph: { - title: "Emlak Konutları Başakşehir | Luxury Urban Living", description: "A New Standard of Living in Başakşehir. 2,599 Residences | 74 Commercial Units | 85% Green Landscape | 24/7 Security", url: "https://emlakkonutlari.com", siteName: "Emlak Konutları", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/city-sunset_1127-4034.jpg", alt: "Emlak Konutları Başakşehir aerial view"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Emlak Konutları Başakşehir | Luxury Living", description: "Experience premium residential living with 85% green landscape, security, and architectural excellence.", images: ["http://img.b2bpic.net/free-photo/city-sunset_1127-4034.jpg"], - }, - robots: { - index: true, - follow: true, - }, + title: 'Emlak Konutları Başakşehir | Luxury Residential Living in Istanbul', + description: 'Discover Emlak Konutları Başakşehir - a master-planned residential community in Istanbul with 2,599 modern residences, 85% green landscape, and world-class security.', + keywords: 'luxury residential, Istanbul, Başakşehir, apartments, penthouses, real estate', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +