diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0e3865a..4d9c47e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,29 +1,67 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Manrope } from "next/font/google"; +import { DM_Sans } 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 { Manrope } from "next/font/google"; -import { DM_Sans } 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 manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], }); + const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Crochet by Khushi - Handmade with Love", + description: "Discover beautifully handmade crochet flowers, bouquets, keychains, and custom orders. Premium artisan crafts made with care and creativity for India.", + keywords: "crochet, handmade, flowers, bouquets, custom orders, keychains, artisan gifts, India", + metadataBase: new URL("https://crochetbykhushi.com"), + alternates: { + canonical: "https://crochetbykhushi.com", + }, + openGraph: { + title: "Crochet by Khushi - Handmade with Love", + description: "Premium handmade crochet products crafted with passion. Explore our collection of crochet flowers, bouquets, and custom creations.", + url: "https://crochetbykhushi.com", + siteName: "Crochet by Khushi", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/warm-cozy-sweaters_169016-3090.jpg", + alt: "Handmade Crochet by Khushi", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Crochet by Khushi - Handmade with Love", + description: "Discover beautifully handmade crochet products made with passion and care.", + images: ["http://img.b2bpic.net/free-photo/warm-cozy-sweaters_169016-3090.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -32,7 +70,9 @@ export default function RootLayout({ return ( - + {children}