From 0bdd2575de0b260fdd6e5c3bb0740483bfb79c2d Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 16:06:48 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 50 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 44 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3c90ab1..8ed1584 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,17 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Mulish } 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 mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); export const metadata: Metadata = { - title: "NiaFoods - Fresh Groceries & Food Delivery in Nairobi", description: "Premium grocery supplier and food delivery service in Nairobi. Fresh produce, wholesale supply, and quality food items delivered to your door.", keywords: "groceries, food delivery, fresh produce, wholesale, Nairobi, Kenya, food supplier", openGraph: { - title: "NiaFoods - Fresh Groceries & Food Delivery", description: "Your trusted food supplier in Nairobi with fast delivery and premium quality products.", siteName: "NiaFoods", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/omelette-with-sausages-cereal_23-2147693882.jpg", alt: "Fresh NiaFoods Products"}, - ], - }, - twitter: { - card: "summary_large_image", title: "NiaFoods - Fresh Groceries & Food Delivery", description: "Premium grocery supplier in Nairobi with fast, reliable delivery.", images: ["http://img.b2bpic.net/free-photo/omelette-with-sausages-cereal_23-2147693882.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "NiaFoods Limited - Fresh Groceries & Food Supplies in Nairobi", description: "Premium fresh produce, quality food items, and reliable delivery service across Nairobi."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}