7 Commits

Author SHA1 Message Date
0847c19c7e Update src/app/page.tsx 2026-03-06 04:27:45 +00:00
56b5d292c9 Merge version_2 into main
Merge version_2 into main
2026-03-06 04:25:37 +00:00
f80ee1835a Update src/app/page.tsx 2026-03-06 04:25:33 +00:00
47e11eb3e1 Update src/app/layout.tsx 2026-03-06 04:25:33 +00:00
dc4a70fa2c Merge version_1 into main
Merge version_1 into main
2026-03-06 04:23:41 +00:00
34a55e778e Merge version_1 into main
Merge version_1 into main
2026-03-06 04:22:56 +00:00
2a9f022edb Merge version_1 into main
Merge version_1 into main
2026-03-06 04:21:45 +00:00
2 changed files with 13 additions and 45 deletions

View File

@@ -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>
); );
} }

View File

@@ -63,7 +63,7 @@ export default function LandingPage() {
]} ]}
mediaAnimation="blur-reveal" mediaAnimation="blur-reveal"
buttons={[ buttons={[
{ text: "Explore Collection", href: "#products" }, { text: "Shop Now", href: "#products" },
{ text: "Learn More", href: "#about" } { text: "Learn More", href: "#about" }
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
@@ -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"