diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b7634fb..ac314f4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1423 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Montserrat } 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 montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Gand Café UK – Luxury Coffee Experience", description: "Discover elevated coffee culture at Gand Café UK. Premium espresso, artisanal pastries, and an exclusive atmosphere crafted for the discerning palate.", keywords: "luxury café UK, specialty coffee, premium espresso, artisanal coffee, exclusive café experience", metadataBase: new URL("https://gandcafe.uk"), - alternates: { - canonical: "https://gandcafe.uk"}, - openGraph: { - title: "Gand Café UK – Taste the Extraordinary", description: "Step into a world of sophisticated coffee craftsmanship and timeless elegance. Reserve your table at Gand Café today.", url: "https://gandcafe.uk", siteName: "Gand Café UK", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/shisha-place-with-full-furniture_140725-9261.jpg", alt: "Gand Café luxury interior"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Gand Café UK – Elevated Coffee Culture", description: "Experience premium specialty coffee in an exclusive luxury setting.", images: ["http://img.b2bpic.net/free-photo/shisha-place-with-full-furniture_140725-9261.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Gand Café UK - Elevated Coffee Culture", description: "Experience exceptional specialty coffee in the heart of the UK. Gand Café offers premium coffee, artisanal pastries, and a sophisticated atmosphere."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -