From e6c35b73e0af71c7ee52affef4517cf531a266fa Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 15:00:36 +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 8bef527..e7f551a 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 { Figtree } 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 figtree = Figtree({ - variable: "--font-figtree", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Columbus Cafe Kakamega | Premium Halal Coffee & Dining", description: "Discover Columbus Cafe in Kakamega CBD. Enjoy premium halal coffee, continental cuisine, free Wi-Fi, and great ambience. Order online, call, or visit us today!", keywords: "cafe kakamega, coffee shop kakamega, halal restaurant kakamega, best cafe in kakamega, dining kakamega", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Columbus Cafe Kakamega | Premium Halal Coffee & Dining", description: "Experience the heart of coffee and dining culture at Columbus Cafe. Fresh cappuccino, halal cuisine, and welcoming ambience.", siteName: "Columbus Cafe", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/espresso-details-close-up-pouring-coffee-into-white-cup-from-coffee-pot-selective-focus-concept-making-coffee-bar-pub-restaurant-brewing-coffee-cezve_166373-2016.jpg", alt: "Columbus Cafe - Coffee & Dining"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Columbus Cafe Kakamega", description: "Premium halal coffee and continental cuisine in the heart of Kakamega.", images: [ - "http://img.b2bpic.net/free-photo/espresso-details-close-up-pouring-coffee-into-white-cup-from-coffee-pot-selective-focus-concept-making-coffee-bar-pub-restaurant-brewing-coffee-cezve_166373-2016.jpg"], - }, -}; + title: "Columbus Cafe - Premium Coffee & Dining in Kakamega", description: "Experience the heart of coffee and dining in Kakamega. Halal cuisine, continental dishes, free Wi-Fi, and great ambience."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}