|
|
|
|
@@ -1,51 +1,20 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Halant } from "next/font/google";
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
import { Raleway } 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 raleway = Raleway({
|
|
|
|
|
variable: "--font-raleway", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
const inter = Inter({ subsets: ["latin"] });
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "ARS Fashion Boutique | Premium Women's Boutique in Kovilpatti", description: "Discover stylish women's dresses, designer blouses and boutique stitching at ARS Fashion Boutique in Kovilpatti. Premium quality at affordable prices. Call or WhatsApp today.", keywords: "boutique in Kovilpatti, women boutique Kovilpatti, designer blouse Kovilpatti, ladies boutique near me, fashion boutique Kovilpatti, ethnic wear, salwar suits, custom stitching", openGraph: {
|
|
|
|
|
title: "ARS Fashion Boutique - Premium Women's Fashion in Kovilpatti", description: "Explore designer blouses, ethnic wear, and custom stitching at ARS Fashion Boutique. Quality fabrics at affordable prices.", type: "website", siteName: "ARS Fashion Boutique", images: [
|
|
|
|
|
{
|
|
|
|
|
url: "http://img.b2bpic.net/free-photo/brunette-gorgeous-girl-clothing-store-boutique-casual-clothes-gray-coat_627829-9098.jpg", alt: "ARS Fashion Boutique Premium Collections"},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image", title: "ARS Fashion Boutique | Premium Women's Boutique in Kovilpalli", description: "Designer blouses, ethnic wear, and boutique stitching at affordable prices.", images: [
|
|
|
|
|
"http://img.b2bpic.net/free-photo/brunette-gorgeous-girl-clothing-store-boutique-casual-clothes-gray-coat_627829-9098.jpg"],
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
title: "ARS Fashion Boutique | Premium Women's Fashion in Kovilpatti", description: "Designer dresses, boutique stitching, and quality fabrics at affordable prices. Trusted by 500+ women in Kovilpatti."};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${halant.variable} ${inter.variable} ${raleway.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<body className={inter.className}>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1413,7 +1382,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|