Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-03-22 10:37:44 +00:00
4 changed files with 53 additions and 14 deletions

View File

@@ -93,7 +93,7 @@ export default function ContactPage() {
tagAnimation="slide-up"
buttons={[{ text: "Contact Support", href: "#" }]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/abstract-store-with-futuristic-concept-architecture_23-2150861924.jpg"
imageSrc="http://img.b2bpic.net/free-photo/abstract-store-with-futuristic-concept-architecture_23-2150861924.jpg?_wi=3"
imageAlt="Premium customer support environment"
useInvertedBackground={false}
/>
@@ -101,7 +101,7 @@ export default function ContactPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/close-up-ferromagnetic-metal-with-blurred-background_23-2148253604.jpg"
imageSrc="http://img.b2bpic.net/free-photo/close-up-ferromagnetic-metal-with-blurred-background_23-2148253604.jpg?_wi=3"
imageAlt="Luxury product detail close-up macro photography"
columns={footerColumns}
logoText="LuxeMart"

View File

@@ -1,24 +1,61 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Montserrat } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Montserrat } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const montserrat = Montserrat({
variable: "--font-montserrat",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "LuxeMart - Premium Brand Marketplace",
description: "Discover curated luxury brands and connect with verified sellers. Authenticated products, exclusive collections, and exceptional service.",
keywords: "luxury marketplace, premium brands, luxury e-commerce, seller marketplace, authenticated products",
metadataBase: new URL("https://luxemart.com"),
alternates: {
canonical: "https://luxemart.com",
},
openGraph: {
title: "LuxeMart - Premium Brand Marketplace",
description: "Exclusive luxury e-commerce platform connecting discerning buyers with premium sellers.",
url: "https://luxemart.com",
siteName: "LuxeMart",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/woman-selecting-necklace-jewelry-section_107420-96187.jpg",
alt: "LuxeMart Premium Collections",
},
],
},
twitter: {
card: "summary_large_image",
title: "LuxeMart - Premium Brand Marketplace",
description: "Shop authenticated luxury brands from verified sellers.",
images: ["http://img.b2bpic.net/free-photo/woman-selecting-necklace-jewelry-section_107420-96187.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +64,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${montserrat.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -182,7 +182,7 @@ export default function HomePage() {
tagAnimation="slide-up"
buttons={[{ text: "Learn More", href: "#" }]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/abstract-store-with-futuristic-concept-architecture_23-2150861924.jpg"
imageSrc="http://img.b2bpic.net/free-photo/abstract-store-with-futuristic-concept-architecture_23-2150861924.jpg?_wi=1"
imageAlt="Luxury retail environment"
useInvertedBackground={false}
/>
@@ -379,7 +379,7 @@ export default function HomePage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/close-up-ferromagnetic-metal-with-blurred-background_23-2148253604.jpg"
imageSrc="http://img.b2bpic.net/free-photo/close-up-ferromagnetic-metal-with-blurred-background_23-2148253604.jpg?_wi=1"
imageAlt="Luxury product detail close-up macro photography"
columns={footerColumns}
logoText="LuxeMart"

View File

@@ -86,7 +86,7 @@ export default function SellersPage() {
{ text: "Learn More", href: "#" },
]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/abstract-store-with-futuristic-concept-architecture_23-2150861924.jpg"
imageSrc="http://img.b2bpic.net/free-photo/abstract-store-with-futuristic-concept-architecture_23-2150861924.jpg?_wi=2"
imageAlt="Luxury seller environment"
mediaAnimation="slide-up"
imagePosition="right"
@@ -182,7 +182,7 @@ export default function SellersPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/close-up-ferromagnetic-metal-with-blurred-background_23-2148253604.jpg"
imageSrc="http://img.b2bpic.net/free-photo/close-up-ferromagnetic-metal-with-blurred-background_23-2148253604.jpg?_wi=2"
imageAlt="Luxury product detail close-up macro photography"
columns={footerColumns}
logoText="LuxeMart"