From 2c807631cefb6d4d900def5eef8c4a6b0b81d6af Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 00:05:34 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 66 ++++++++-------------------------------------- 1 file changed, 11 insertions(+), 55 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8907407..d912780 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,67 +1,24 @@ import type { Metadata } from "next"; -import { Libre_Baskerville, Inter } from "next/font/google"; +import { DM_Sans } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", - subsets: ["latin"], - weight: ["400", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Aroma Café 100. Yıl - Premium Turkish Coffee in Ankara", - description: "Discover authentic Turkish coffee and premium pastries at Aroma Café 100. Yıl in Ankara. Located in İşçi Blokları. Reserve now or call +90 536 584 01 68.", - keywords: "Turkish coffee, café Ankara, premium coffee, Turkish pastries, coffee shop, barista, Turkish culture", - metadataBase: new URL("https://aromacafe100yil.com"), - alternates: { - canonical: "https://aromacafe100yil.com", - }, - openGraph: { - title: "Aroma Café 100. Yıl - Premium Turkish Coffee House", - description: "Experience authentic Turkish coffee culture. Authentic flavors, warm hospitality, and premium pastries in the heart of Ankara.", - url: "https://aromacafe100yil.com", - siteName: "Aroma Café 100. Yıl", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/side-view-iron-teapot-with-glass-tea-potted-plant-table_141793-13004.jpg", - alt: "Aroma Café 100. Yıl - Premium Turkish Coffee Experience", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Aroma Café 100. Yıl - Turkish Coffee in Ankara", - description: "Premium Turkish coffee and authentic pastries. Located in İşçi Blokları, Ankara. Reserve your table now.", - images: ["http://img.b2bpic.net/free-photo/side-view-iron-teapot-with-glass-tea-potted-plant-table_141793-13004.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Aroma Café 100. Yıl", description: "Experience premium Turkish coffee culture in the heart of Ankara."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +