From 53341ffb6f1e5cfd04fb29b4ebdb835c25519255 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 00:54:38 +0000 Subject: [PATCH 1/8] Update src/app/layout.tsx --- src/app/layout.tsx | 1443 +------------------------------------------- 1 file changed, 20 insertions(+), 1423 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 597cc19..e1b2415 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1439 +1,37 @@ 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 { Inter_Tight } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper"; +import { Tag } from "@/components/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 interTight = Inter_Tight({ + variable: "--font-inter-tight", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "Kzone Cafe & Grill | 24-Hour Restaurant in Kigamboni, Dar es Salaam", - description: "Kzone Cafe & Grill - Your favorite 24-hour restaurant in Mnadani, Kigamboni. Grilled chicken, burgers, fresh food. Dine-in, drive-through, delivery. 4.7β˜… rated. Call 0655 311 355.", - keywords: "restaurant Kigamboni, 24 hour restaurant Dar es Salaam, grilled chicken Kigamboni, food delivery Kigamboni, best restaurant Kigamboni, burger restaurant Tanzania, cafe and grill", - metadataBase: new URL("https://kzonecafegrill.tz"), - alternates: { - canonical: "https://kzonecafegrill.tz", - }, - openGraph: { - title: "Kzone Cafe & Grill | 24-Hour Restaurant Kigamboni", - description: "Fresh grilled food, 24/7 service. Dine-in, drive-through, delivery. Rated 4.7β˜…. Order now!", - url: "https://kzonecafegrill.tz", - siteName: "Kzone Cafe & Grill", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/pork-barbecue-cooked-grilled-charcoal-barbecue-is-beautiful-meat-fire-meat-coals_132075-13607.jpg", - alt: "Grilled Chicken - Kzone Cafe & Grill", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Kzone Cafe & Grill | 24-Hour Restaurant", - description: "Fresh food, quick service, affordable prices. Open 24 hours in Kigamboni!", - images: ["http://img.b2bpic.net/free-photo/pork-barbecue-cooked-grilled-charcoal-barbecue-is-beautiful-meat-fire-meat-coals_132075-13607.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Kzone Cafe & Grill - 24/7 Restaurant in Kigamboni", description: + "Fresh Food, Anytime – Open 24 Hours in Kigamboni. Dine-in, Drive-through, or Delivery. Rated 4.7β˜… with 38 Customer Reviews."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - +