From 2a9370a1f3bd45f62ba2bcea3a1b6c35198a91cc Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 10:27:23 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 52 +++++++++++----------------------------------- 1 file changed, 12 insertions(+), 40 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f43aa12..595a364 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,55 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Lato } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Coffee Theory Larnaca | Specialty Coffee & Premium Experience", description: "Discover exceptional specialty coffee at Coffee Theory in Aradippou, Larnaca. 4.7★ rated café featuring Strada coffee machine and the perfect Freddo Espresso.", keywords: "specialty coffee Larnaca, café Aradippou, Freddo Espresso, premium coffee Cyprus", openGraph: { - title: "Coffee Theory Larnaca - Exceptional Specialty Coffee", description: "Experience premium specialty coffee crafted with precision. Visit Coffee Theory in Aradippou, Larnaca.", siteName: "Coffee Theory Larnaca", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/wooden-sauna-with-mountain-view-panoramic-calm_169016-70823.jpg", alt: "Coffee Theory café interior"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Coffee Theory Larnaca - Premium Specialty Coffee", description: "Discover the finest specialty coffee experience in Larnaca", images: ["http://img.b2bpic.net/free-photo/wooden-sauna-with-mountain-view-panoramic-calm_169016-70823.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Coffee Theory | Premium Specialty Coffee in Larnaca", description: "Experience exceptional specialty coffee at Coffee Theory in Larnaca. Premium quality, crafted with precision and served with genuine care."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +