Update src/app/layout.tsx

This commit is contained in:
2026-03-07 04:57:28 +00:00
parent e0f8b5c949
commit 6a52ac1dce

View File

@@ -1,57 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Open_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "@/styles/globals.css";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Bridal Makeup Artist in Saharanpur | The BrideBelle", description: "Professional bridal makeup artist in Saharanpur. HD makeup, airbrush, party makeup by Rahin. Book your wedding makeup consultation today. Call +91 84331 66030", keywords: "bridal makeup artist Saharanpur, HD bridal makeup, airbrush makeup Saharanpur, wedding makeup artist, party makeup, engagement makeup", metadataBase: new URL("https://thebridebelle.com"),
alternates: {
canonical: "https://thebridebelle.com"},
openGraph: {
title: "The BrideBelle - Luxury Bridal Makeup in Saharanpur", description: "Professional HD and airbrush bridal makeup by Rahin. Creating flawless, long-lasting looks for your special day.", url: "https://thebridebelle.com", siteName: "The BrideBelle", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/woman-applying-cosmetics-model_23-2148398679.jpg", alt: "The BrideBelle - Luxury Bridal Makeup"},
],
},
twitter: {
card: "summary_large_image", title: "The BrideBelle - Bridal Makeup Artist", description: "Professional bridal makeup in Saharanpur. HD, airbrush, and party makeup.", images: ["http://img.b2bpic.net/free-photo/woman-applying-cosmetics-model_23-2148398679.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "The BrideBelle - Professional Bridal Makeup in Saharanpur", description: "Professional bridal makeup artist in Saharanpur. HD, Airbrush, and Party Makeup services by Rahin. Book luxury bridal makeup for your special day."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1419,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}