Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f80ee1835a | |||
| 47e11eb3e1 | |||
| dc4a70fa2c | |||
| 34a55e778e | |||
| 2a9f022edb |
@@ -1,54 +1,23 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Libre_Baskerville } from "next/font/google";
|
import { Poppins } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const libreBaskerville = Libre_Baskerville({
|
const poppins = Poppins({
|
||||||
variable: "--font-libre-baskerville", subsets: ["latin"],
|
subsets: ["latin"],
|
||||||
weight: ["400", "700"],
|
weight: ["400", "500", "600", "700"],
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Élegance | Luxury Fashion & Timeless Style", description: "Discover premium luxury fashion pieces crafted with exceptional quality and timeless elegance. Explore our exclusive collection of designer clothing and accessories.", keywords: "luxury fashion, designer clothing, premium apparel, elegant style, haute couture, fashion collection", metadataBase: new URL("https://elegance-fashion.com"),
|
title: "Élegance - Luxury Fashion Collections", description: "Discover timeless elegance with our exclusive collection of luxury fashion pieces, handcrafted by master artisans using sustainable materials."};
|
||||||
alternates: {
|
|
||||||
canonical: "https://elegance-fashion.com"
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Élegance | Luxury Fashion & Timeless Style", description: "Discover premium luxury fashion pieces crafted with exceptional quality and timeless elegance.", url: "https://elegance-fashion.com", siteName: "Élegance", type: "website", images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/woman-with-long-black-hair-dark-green-dress-posing-chair_613910-11094.jpg", alt: "luxury fashion designer clothing high-end apparel"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Élegance | Luxury Fashion & Timeless Style", description: "Premium designer clothing and accessories for the discerning customer.", images: ["http://img.b2bpic.net/free-psd/elegant-young-woman-long-pink-satin-evening-gown_9975-132967.jpg"]
|
|
||||||
},
|
|
||||||
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={poppins.className}>{children}
|
||||||
<body
|
|
||||||
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1416,7 +1385,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -117,7 +117,7 @@ export default function LandingPage() {
|
|||||||
<div id="products" data-section="products">
|
<div id="products" data-section="products">
|
||||||
<ProductCardOne
|
<ProductCardOne
|
||||||
title="Featured Collections"
|
title="Featured Collections"
|
||||||
description="Experience our most coveted pieces, each selected for its timeless elegance and exceptional quality"
|
description="Handcrafted by master artisans using sustainable materials—each piece is a timeless investment combining heritage craftsmanship with contemporary design. Experience luxury that justifies its value through uncompromising quality, ethical sourcing, and pieces designed to last generations."
|
||||||
tag="Shop Now"
|
tag="Shop Now"
|
||||||
tagIcon={ShoppingBag}
|
tagIcon={ShoppingBag}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
@@ -256,4 +256,4 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user