Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-09 19:59:20 +00:00
2 changed files with 10 additions and 45 deletions

View File

@@ -1,57 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Open_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "LUXE - Premium Fashion & Contemporary Design", description: "Discover curated collections of premium clothing designed for the modern individual. Experience timeless elegance meets cutting-edge design.", keywords: "luxury fashion, contemporary clothing, premium brands, designer clothes, elegant style", metadataBase: new URL("https://www.luxefashion.com"),
alternates: {
canonical: "https://www.luxefashion.com"},
openGraph: {
title: "LUXE - Premium Fashion & Contemporary Design", description: "Discover our curated collection of contemporary clothing designed for modern individuals.", url: "https://www.luxefashion.com", siteName: "LUXE", images: [
{
url: "http://img.b2bpic.net/free-photo/seductive-close-up-photo-beautiful-blonde-girl-cocktail-silk-dress-seduces-someone-touching-her-lips-by-her-finger_639032-835.jpg", alt: "elegant woman fashion model premium clothing"},
],
type: "website"},
twitter: {
card: "summary_large_image", title: "LUXE - Premium Fashion & Contemporary Design", description: "Elevate your style with our curated collection of premium clothing.", images: ["http://img.b2bpic.net/free-photo/seductive-close-up-photo-beautiful-blonde-girl-cocktail-silk-dress-seduces-someone-touching-her-lips-by-her-finger_639032-835.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "LUXE - Premium Fashion Collection", description: "Discover our curated collection of contemporary clothing designed for the modern individual."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1419,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -74,6 +74,9 @@ export default function LandingPage() {
useInvertedBackground={false}
animationType="slide-up"
gridVariant="three-columns-all-equal-width"
buttons={[
{ text: "Shop Featured Pieces", href: "#" }
]}
products={[
{
id: "1", brand: "LUXE Essentials", name: "Premium Silk Blouse", price: "$189.00", rating: 5,
@@ -172,4 +175,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}