From 2aabaea8f9582199460dc924f621f629ab6b407a Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 14:11:26 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 47 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 41 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 399a814..bdad6d4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Manrope } 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 manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Phil and Kay Stores | Fashion Shop Nairobi | Quality Clothes & Accessories", description: "Quality kids and adult fashion, shoes, and accessories in Nairobi. Visit Phil and Kay Stores on Moi Avenue. Open daily until 7 PM. Call 0746 120062.", keywords: "fashion store Nairobi, clothes shop Moi Avenue, kids fashion Nairobi, shoes Nairobi, fashion accessories, retail store Kenya", openGraph: { - title: "Phil and Kay Stores | Fashion Shop Nairobi", description: "Your one-stop shop for quality kids and adult fashion in Nairobi", siteName: "Phil and Kay Stores", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/outdoor-sunny-lifestyle-portrait-happy-exited-couple-elegant-girls-having-fun-together-street-stylish-vintage-outfits-pastel-sweaters-sunglasses-matching-accessories-family-time_291049-1482.jpg", alt: "Phil and Kay Stores Fashion Display"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Phil and Kay Stores | Fashion Shop Nairobi", description: "Quality fashion for kids and adults on Moi Avenue, Nairobi", images: ["http://img.b2bpic.net/free-photo/outdoor-sunny-lifestyle-portrait-happy-exited-couple-elegant-girls-having-fun-together-street-stylish-vintage-outfits-pastel-sweaters-sunglasses-matching-accessories-family-time_291049-1482.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Phil & Kay Stores - Quality Fashion in Nairobi", description: "Your one-stop shop for quality kids and adult clothes, shoes, and accessories in Nairobi"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}