Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e05f64246c | |||
| beaa87e67f | |||
| 770377feb1 | |||
| a30e329a98 | |||
| 016ea9769a | |||
| e5e092994e | |||
| 50d7a30872 | |||
| 1f5f17ad62 | |||
| 2227c7f608 |
@@ -1,51 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Raleway } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
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"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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: "Designer dresses, boutique stitching, and quality fabrics at affordable prices. Trusted by 500+ women in Kovilpatti."};
|
||||||
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"],
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${raleway.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1413,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -44,6 +44,7 @@ export default function LandingPage() {
|
|||||||
title="Premium Women's Fashion in Kovilpatti"
|
title="Premium Women's Fashion in Kovilpatti"
|
||||||
description="Designer Dresses, Boutique Stitching & Quality Fabrics at Affordable Prices. Discover beautiful, comfortable, and trendy outfits for every occasion."
|
description="Designer Dresses, Boutique Stitching & Quality Fabrics at Affordable Prices. Discover beautiful, comfortable, and trendy outfits for every occasion."
|
||||||
background={{ variant: "sparkles-gradient" }}
|
background={{ variant: "sparkles-gradient" }}
|
||||||
|
avatarText="Trusted by 500+ women in Kovilpatti"
|
||||||
imageSrc="http://img.b2bpic.net/premium-photo/colorful-indian-garments-hangers-store_1261973-10886.jpg?id=414987823"
|
imageSrc="http://img.b2bpic.net/premium-photo/colorful-indian-garments-hangers-store_1261973-10886.jpg?id=414987823"
|
||||||
imageAlt="ARS Fashion Boutique elegant interior with dress collections"
|
imageAlt="ARS Fashion Boutique elegant interior with dress collections"
|
||||||
buttons={[
|
buttons={[
|
||||||
|
|||||||
Reference in New Issue
Block a user