81 lines
2.5 KiB
TypeScript
81 lines
2.5 KiB
TypeScript
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";
|
|
|
|
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: "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<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<ServiceWrapper>
|
|
<body
|
|
className={`${halant.variable} ${inter.variable} ${mulish.variable} antialiased`}
|
|
>
|
|
<Tag />
|
|
{children}
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `${getVisualEditScript()}`
|
|
}}
|
|
/>
|
|
</body>
|
|
</ServiceWrapper>
|
|
</html>
|
|
);
|
|
} |