Files
5b35d4a9-63e3-48a9-b09c-b2c…/src/app/layout.tsx
2026-03-14 21:00:36 +00:00

81 lines
2.4 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: "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,
}: 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>
);
}