diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index f163c56..d69706d 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -94,7 +94,7 @@ export default function AboutPage() { icon: Clock, }, ]} - imageSrc="http://img.b2bpic.net/free-photo/beautiful-young-woman-using-her-mobile-phone-street_1301-4725.jpg" + imageSrc="http://img.b2bpic.net/free-photo/beautiful-young-woman-using-her-mobile-phone-street_1301-4725.jpg?_wi=4" imageAlt="City Cellworld store interior" imagePosition="right" mediaAnimation="slide-up" diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 0565e88..9ad6d14 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -62,15 +62,15 @@ export default function ContactPage() { buttonAnimation="slide-up" mediaItems={[ { - imageSrc: "http://img.b2bpic.net/free-photo/blur-shopping-mall_1203-7873.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/blur-shopping-mall_1203-7873.jpg?_wi=8", imageAlt: "Latest smartphones on display", }, { - imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-man-working-his-office-with-mobile-phone_1301-6565.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-man-working-his-office-with-mobile-phone_1301-6565.jpg?_wi=3", imageAlt: "Professional phone repair service", }, { - imageSrc: "http://img.b2bpic.net/free-photo/low-angle-woman-holding-smartphone_23-2150170629.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/low-angle-woman-holding-smartphone_23-2150170629.jpg?_wi=4", imageAlt: "Wide range of mobile accessories", }, ]} 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}