Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e9e286e986 | |||
| 5bfeb2887c | |||
| a293922574 | |||
| 02178377fc | |||
| db6a7e9625 |
@@ -1,53 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Roboto } from "next/font/google";
|
import { Outfit } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const roboto = Roboto({
|
const outfit = Outfit({ subsets: ["latin"] });
|
||||||
variable: "--font-roboto",
|
|
||||||
subsets: ["latin"],
|
|
||||||
weight: ["100", "300", "400", "500", "700", "900"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Anmol Collection | Premium Pakistani Women's Fashion",
|
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."};
|
||||||
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,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
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={outfit.className}>{children}
|
||||||
<body className={`${roboto.variable} antialiased`}>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1415,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -103,7 +103,7 @@ export default function HomePage() {
|
|||||||
<div id="featured-collections" data-section="featured-collections">
|
<div id="featured-collections" data-section="featured-collections">
|
||||||
<ProductCardTwo
|
<ProductCardTwo
|
||||||
title="Featured Collections"
|
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"
|
tag="Collections"
|
||||||
tagIcon={Heart}
|
tagIcon={Heart}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
|
|||||||
Reference in New Issue
Block a user