From 8d6ff03768ea358c34016e244faf49283d2b0740 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 22:59:12 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1412 +------------------------------------------- 1 file changed, 6 insertions(+), 1406 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index fc84231..7140415 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1419 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Lato } 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 lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "The Good Baker | Fresh Coffee & Artisan Pastries in Accra", description: "Discover handcrafted coffee and freshly baked pastries at The Good Baker. Located in Accra, Ghana. Premium ingredients, warm ambience, and exceptional service.", keywords: "cafe, coffee, pastries, bakery, Accra, Ghana, fresh croissants, specialty coffee", openGraph: { - title: "The Good Baker - Artisan Coffee & Pastries", description: "Experience premium handcrafted coffee and freshly baked pastries in our cozy Accra cafe.", type: "website", siteName: "The Good Baker", images: [ - { - url: "http://img.b2bpic.net/free-photo/top-view-breakfast-arrangement-with-coffee-pastry_23-2148623195.jpg", alt: "Fresh coffee and pastries at The Good Baker"}, - ], - }, - twitter: { - card: "summary_large_image", title: "The Good Baker - Artisan Coffee & Pastries", description: "Handcrafted coffee and freshly baked pastries in Accra", images: [ - "http://img.b2bpic.net/free-photo/top-view-breakfast-arrangement-with-coffee-pastry_23-2148623195.jpg"], - }, -}; + title: "The Good Baker | Fresh Coffee & Artisan Pastries in Accra", description: "Experience handcrafted coffee and freshly baked pastries at The Good Baker in Accra. Located at Amal Suites, Garden Street."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -