6 Commits

Author SHA1 Message Date
4eb4eb5579 Merge version_2 into main
Merge version_2 into main
2026-03-06 06:04:28 +00:00
e9e286e986 Update src/app/page.tsx 2026-03-06 06:04:24 +00:00
5bfeb2887c Update src/app/layout.tsx 2026-03-06 06:04:23 +00:00
a293922574 Merge version_1 into main
Merge version_1 into main
2026-03-03 18:47:26 +00:00
02178377fc Merge version_1 into main
Merge version_1 into main
2026-03-03 18:41:13 +00:00
db6a7e9625 Merge version_1 into main
Merge version_1 into main
2026-03-03 18:34:43 +00:00
2 changed files with 10 additions and 44 deletions

View File

@@ -1,53 +1,20 @@
import type { Metadata } from "next";
import { Roboto } from "next/font/google";
import { Outfit } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const roboto = Roboto({
variable: "--font-roboto",
subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
});
const outfit = Outfit({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Anmol Collection | Premium Pakistani Women's Fashion",
description: "Elegant stitched & unstitched suits, organza dresses, and embroidered outfits for Eid, weddings & special occasions. Premium quality, affordable luxury from Quetta.",
keywords: "Pakistani women clothing, embroidered suits, organza dresses, Eid collection, women fashion, boutique Quetta",
metadataBase: new URL("https://anmolcollection.com"),
alternates: {
canonical: "https://anmolcollection.com",
},
openGraph: {
title: "Anmol Collection | Premium Pakistani Fashion",
description: "Discover elegant traditional wear with luxury embroidery and modern designs",
url: "https://anmolcollection.com",
siteName: "Anmol Collection",
type: "website",
},
twitter: {
card: "summary_large_image",
title: "Anmol Collection | Premium Pakistani Women's Fashion",
description: "Elegant stitched & unstitched collections for every occasion",
},
robots: {
index: true,
follow: true,
},
};
title: "Anmol Collection - Premium Traditional Pakistani Fashion", description: "Handpicked collections trusted by 17K+ followers. Discover elegant stitched & unstitched traditional wear with beautiful embroidery and affordable luxury prices."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${roboto.variable} antialiased`}>
<Tag />
{children}
<html lang="en">
<body className={outfit.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1415,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -103,7 +103,7 @@ export default function HomePage() {
<div id="featured-collections" data-section="featured-collections">
<ProductCardTwo
title="Featured Collections"
description="Explore our most popular and elegant collections, curated specially for you"
description="Handpicked collections trusted by 17K+ followers. Explore our most popular and elegant designs, carefully curated for quality and style"
tag="Collections"
tagIcon={Heart}
tagAnimation="slide-up"
@@ -236,4 +236,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}