From 914f28a9c8e9ceb681e9bbac48cbc4caad2e87f7 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 21:00:36 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 59 ++++++++++++++++++++++++++++++++++++---------- 1 file changed, 47 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a02c995..7a27410 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,27 +1,60 @@ 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"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); + +export const metadata: Metadata = { + title: "AV Designer Style | Elegant Wedding Fashion & Bridal Wear", + description: "Discover exquisite bridal lehengas, designer sherwanis, and bespoke wedding outfits. Premium wedding fashion for modern couples. Contact: +91 7240791648", + keywords: "bridal lehenga, groom sherwani, wedding dress, designer wedding wear, bridal fashion, luxury wedding outfits", + metadataBase: new URL("https://avdesignerstyle.com"), + alternates: { + canonical: "https://avdesignerstyle.com", + }, + openGraph: { + title: "AV Designer Style - Elegant Wedding Fashion", + description: "Premium bridal and groom wear for your special day", + url: "https://avdesignerstyle.com", + siteName: "AV Designer Style", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/woman-with-floral-dress-bare-feet_23-2148261281.jpg", + alt: "AV Designer Style - Bridal Collections", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "AV Designer Style - Elegant Wedding Fashion", + description: "Discover our luxury bridal and groom collections", + images: ["http://img.b2bpic.net/free-photo/woman-with-floral-dress-bare-feet_23-2148261281.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; export default function RootLayout({ children, @@ -31,7 +64,9 @@ export default function RootLayout({ return ( - + {children}