From 1ad548f96ea0864cd66ed4f48ae51856b4897370 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 17:42:38 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 54 +++++++++++----------------------------------- 1 file changed, 12 insertions(+), 42 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1d04f63..181dd57 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { DM_Sans } 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 halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Freez - Best Dessert Café & Ice Cream in Riverside Nairobi | KSh 250-450", description: "Freez dessert café in Riverside Nairobi. Premium pistachio cake, crepes, mini pancakes, specialty coffee & ice cream. Delivery & takeaway available. 4.3★ rating.", keywords: "dessert cafe Nairobi, ice cream Riverside, crepes Nairobi, best desserts Westlands, dessert delivery Nairobi, cafe near me", metadataBase: new URL("https://freez-cafe.co.ke"), - alternates: { - canonical: "https://freez-cafe.co.ke"}, - openGraph: { - title: "Freez - Nairobi's Sweetest Dessert Spot", description: "Fresh pistachio cake, crepes, ice cream & specialty coffee. Delivery available around Westlands & Riverside.", url: "https://freez-cafe.co.ke", siteName: "Freez", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/side-close-up-view-cupcake-strawberries-cupcake-with-white-cream-colorful-sauces-candies-strawberries-bowls-cup-herbal-tea-dark-table_140725-117162.jpg", alt: "Freez dessert cafe"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Freez - Best Desserts in Nairobi", description: "Order fresh pistachio cake, crepes, and ice cream. Fast delivery in Riverside & Westlands.", images: ["http://img.b2bpic.net/free-photo/side-close-up-view-cupcake-strawberries-cupcake-with-white-cream-colorful-sauces-candies-strawberries-bowls-cup-herbal-tea-dark-table_140725-117162.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +