diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7d68022..192a311 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Lato } 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 { Lato } 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 lato = Lato({ variable: "--font-lato", @@ -20,6 +24,41 @@ const lato = Lato({ weight: ["100", "300", "400", "700", "900"], }); +export const metadata: Metadata = { + title: "Rippy Dhillon - Premium Formal Suits, Casual Suits & Embroidered Jackets", + description: "Shop premium fashion at Rippy Dhillon. Explore formal suits, casual suits, embroidered jackets, and western tops. Free shipping, easy returns, and secure checkout with COD & online payment options.", + keywords: "formal suits, casual suits, embroidered jackets, western tops, premium fashion, men's clothing, tailored suits, Indian fashion", + metadataBase: new URL("https://www.rippydhillon.com"), + alternates: { + canonical: "https://www.rippydhillon.com", + }, + openGraph: { + title: "Rippy Dhillon - Premium Fashion Store", + description: "Discover exquisitely crafted formal and casual suits, embroidered jackets, and western tops.", + url: "https://www.rippydhillon.com", + siteName: "Rippy Dhillon", + images: [ + { + url: "http://img.b2bpic.net/free-photo/portrait-handsome-fashion-stylish-hipster-businessman-model-dressed-elegant-brown-suit-near-dark-wall_158538-11166.jpg", + alt: "Rippy Dhillon Premium Fashion Collection", + }, + ], + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "Rippy Dhillon - Premium Fashion", + description: "Elevate your style with our premium collection of formal suits, casual suits, and embroidered jackets.", + images: [ + "http://img.b2bpic.net/free-photo/portrait-handsome-fashion-stylish-hipster-businessman-model-dressed-elegant-brown-suit-near-dark-wall_158538-11166.jpg", + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +67,9 @@ export default function RootLayout({ return ( - + {children}