From be5ae09359b247bffaa84b653d160c85c0d7147a Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 19:10:34 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 44 ++++++++++++-------------------------------- 1 file changed, 12 insertions(+), 32 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 985c0c6..dce4491 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,47 +1,28 @@ import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; -import { Inter } 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 publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Gold African Kitchen | Authentic African Cuisine", description: "Experience authentic African flavors at Gold African Kitchen. Traditional recipes, premium ingredients, and exceptional hospitality. Reserve your table today!", keywords: "African restaurant, authentic cuisine, traditional food, African dishes, Jollof rice, Egusi soup, African dining", metadataBase: new URL("https://goldafricankitchen.com"), - alternates: { - canonical: "https://goldafricankitchen.com"}, - openGraph: { - title: "Gold African Kitchen | Authentic African Cuisine", description: "Savor traditional African flavors prepared with passion and premium ingredients.", url: "https://goldafricankitchen.com", siteName: "Gold African Kitchen", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/vertical-shot-delicious-ethiopian-food-with-fresh-vegetables-wooden-table_181624-32889.jpg", alt: "Gold African Kitchen restaurant"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Gold African Kitchen | Authentic African Cuisine", description: "Experience authentic African flavors at Gold African Kitchen.", images: ["http://img.b2bpic.net/free-photo/vertical-shot-delicious-ethiopian-food-with-fresh-vegetables-wooden-table_181624-32889.jpg"], - }, -}; + title: "Gold African Kitchen", description: "Experience authentic African flavors and traditional cuisine"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +