Merge version_1 into main #5

Merged
bender merged 2 commits from version_1 into main 2026-03-03 19:05:40 +00:00
2 changed files with 7 additions and 50 deletions

View File

@@ -1,59 +1,17 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const nunito = Nunito({
variable: "--font-nunito", subsets: ["latin"],
});
import "./styles/globals.css";
export const metadata: Metadata = {
title: "Purezza Glam Makeover - Best Beauty Salon in Kota | 5-Star Rated", description: "Kota's premium beauty salon offering nail art, eyelash extensions, hair treatments & skin facials. 5-star rated with 149+ reviews. Book now!", keywords: "beauty salon Kota, nail art Kota, eyelash extensions, bridal makeup, hair treatment, skin facial, best beauty parlour", metadataBase: new URL("https://purezzaglam.com"),
alternates: {
canonical: "https://purezzaglam.com"
},
openGraph: {
title: "Purezza Glam Makeover - Premium Beauty Salon in Kota", description: "Discover premium beauty services at Kota's most trusted salon. 5-star rated, natural results, premium products.", type: "website", siteName: "Purezza Glam Makeover", images: [
{
url: "http://img.b2bpic.net/free-photo/front-view-young-female-manicure-pink-t-shirt-with-black-gloves-black-mask-doing-manicure-blue_140725-24225.jpg", alt: "Purezza Glam Makeover Premium Beauty Services"
}
]
},
twitter: {
card: "summary_large_image", title: "Purezza Glam Makeover - Best Beauty Salon in Kota", description: "5-star rated premium beauty services. Nail art, eyelash, hair & skin treatments.", images: ["http://img.b2bpic.net/free-photo/front-view-young-female-manicure-pink-t-shirt-with-black-gloves-black-mask-doing-manicure-blue_140725-24225.jpg"]
},
robots: {
index: true,
follow: true
}
};
title: "Purezza Glam | Premium Beauty Salon in Kota", description: "5-Star Rated Premium Beauty Salon in Kota. Nail Art, Eyelash Extensions, Hair & Skin Treatments. Expert beauty services with premium products."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1421,7 +1379,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -211,4 +211,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}