From 83ab129f29d2f6e202a58a31e721f4d70a9760b3 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 19:54:53 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 48 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 42 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 23b1682..380155c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,55 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Open_Sans } 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 inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Café Elegance - Premium Artisanal Coffee", description: "Discover exceptional single-origin coffee blends sourced ethically from the world's finest plantations. Experience the art of coffee at Café Elegance.", keywords: "premium coffee, artisanal coffee, specialty coffee, coffee shop, ethically sourced, single-origin coffee", openGraph: { - title: "Café Elegance - Premium Artisanal Coffee", description: "Experience exceptional coffee crafted with passion. Discover our award-winning blends and premium café ambiance.", siteName: "Café Elegance", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/love-attraction_1098-13609.jpg", alt: "Café Elegance premium coffee experience" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Café Elegance - Premium Artisanal Coffee", description: "Discover exceptional coffee crafted with passion", images: ["http://img.b2bpic.net/free-photo/white-coffee-roasted-beans-black_1303-1937.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Café Elegance", description: "Premium artisanal coffee and dining experience"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}