From 73fe6cdbe91378d4f018d57bfd42d63238b987dc Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 13:38:25 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0a803b2..a2419ce 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ 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"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Mulish } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const mulish = Mulish({ variable: "--font-mulish", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "City Cellworld - Best Mobile Phone Store in Ongole", + description: "City Cellworld: Affordable mobile phones, genuine accessories & fast repair service in Ongole. Visit our store or call +91-9876-543-210 for the best prices.", + keywords: "mobile phone store Ongole, phone repair Ongole, smartphone store near me, mobile accessories Ongole, best mobile prices", + metadataBase: new URL("https://citycellworld.com"), + alternates: { + canonical: "https://citycellworld.com", + }, + openGraph: { + title: "City Cellworld - Your Trusted Mobile Phone Store", + description: "Best prices on smartphones, accessories & professional repair service in Ongole. Open daily until 10 PM.", + url: "https://citycellworld.com", + siteName: "City Cellworld", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/blur-shopping-mall_1203-7873.jpg", + alt: "City Cellworld mobile phone store", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "City Cellworld - Mobile Phone Store in Ongole", + description: "Affordable phones, accessories & fast repairs. Call +91-9876-543-210 or WhatsApp now!", + images: ["http://img.b2bpic.net/free-photo/blur-shopping-mall_1203-7873.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}