Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0847c19c7e | |||
| 56b5d292c9 | |||
| f80ee1835a | |||
| 47e11eb3e1 | |||
| dc4a70fa2c | |||
| 34a55e778e | |||
| 2a9f022edb |
@@ -1,54 +1,23 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Libre_Baskerville } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Poppins } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const libreBaskerville = Libre_Baskerville({
|
||||
variable: "--font-libre-baskerville", subsets: ["latin"],
|
||||
weight: ["400", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
const poppins = Poppins({
|
||||
subsets: ["latin"],
|
||||
weight: ["400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
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"),
|
||||
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
|
||||
}
|
||||
};
|
||||
title: "Élegance - Luxury Fashion Collections", description: "Discover timeless elegance with our exclusive collection of luxury fashion pieces, handcrafted by master artisans using sustainable materials."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={poppins.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1416,7 +1385,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -63,7 +63,7 @@ export default function LandingPage() {
|
||||
]}
|
||||
mediaAnimation="blur-reveal"
|
||||
buttons={[
|
||||
{ text: "Explore Collection", href: "#products" },
|
||||
{ text: "Shop Now", href: "#products" },
|
||||
{ text: "Learn More", href: "#about" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
@@ -117,7 +117,7 @@ export default function LandingPage() {
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardOne
|
||||
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"
|
||||
tagIcon={ShoppingBag}
|
||||
tagAnimation="slide-up"
|
||||
@@ -256,4 +256,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user