Merge version_1 into main #1

Merged
bender merged 4 commits from version_1 into main 2026-03-14 12:19:42 +00:00
4 changed files with 31 additions and 13 deletions

View File

@@ -146,7 +146,7 @@ export default function AboutPage() {
"Premium shoes and boots crafted by luxury brands. From elegant heels to designer sneakers, find the perfect footwear for every occasion.",
},
]}
imageSrc="http://img.b2bpic.net/free-photo/close-up-clothes-rack-store_23-2148915609.jpg"
imageSrc="http://img.b2bpic.net/free-photo/close-up-clothes-rack-store_23-2148915609.jpg?_wi=3"
imageAlt="Women's luxury fashion collection"
mediaAnimation="blur-reveal"
useInvertedBackground={false}

View File

@@ -126,7 +126,7 @@ export default function CollectionsPage() {
price: "$1,899",
variant: "Black - Silk",
imageSrc:
"http://img.b2bpic.net/free-photo/close-up-clothes-rack-store_23-2148915609.jpg",
"http://img.b2bpic.net/free-photo/close-up-clothes-rack-store_23-2148915609.jpg?_wi=2",
imageAlt: "Elegant evening dress",
},
{
@@ -135,7 +135,7 @@ export default function CollectionsPage() {
price: "$599",
variant: "Indigo - Size 28",
imageSrc:
"http://img.b2bpic.net/free-photo/fashion-details-close-up-attractive-woman-walking-street-fashionable-outfit-holding-suude-handbag-wearing-black-leather-jacket-white-lace-dress-spring-autumn-style_285396-6753.jpg",
"http://img.b2bpic.net/free-photo/fashion-details-close-up-attractive-woman-walking-street-fashionable-outfit-holding-suude-handbag-wearing-black-leather-jacket-white-lace-dress-spring-autumn-style_285396-6753.jpg?_wi=2",
imageAlt: "Premium denim",
},
{

View File

@@ -6,18 +6,34 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Elegance Mall - Premium Luxury Shopping",
description: "Discover curated luxury fashion, designer accessories, and premium collections at Elegance Mall. Your destination for high-end shopping.",
keywords: "luxury shopping, designer brands, premium fashion, luxury accessories, high-end retail",
openGraph: {
title: "Elegance Mall - Premium Luxury Shopping",
description: "Discover curated luxury fashion, designer accessories, and premium collections at Elegance Mall.",
siteName: "Elegance Mall",
type: "website",
},
twitter: {
card: "summary_large_image",
title: "Elegance Mall - Premium Luxury Shopping",
description: "Discover curated luxury fashion, designer accessories, and premium collections.",
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -26,7 +42,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${inter.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -38,4 +56,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -131,7 +131,7 @@ export default function HomePage() {
price: "$2,499",
variant: "Leather - Black",
imageSrc:
"http://img.b2bpic.net/free-photo/fashion-details-close-up-attractive-woman-walking-street-fashionable-outfit-holding-suude-handbag-wearing-black-leather-jacket-white-lace-dress-spring-autumn-style_285396-6753.jpg",
"http://img.b2bpic.net/free-photo/fashion-details-close-up-attractive-woman-walking-street-fashionable-outfit-holding-suude-handbag-wearing-black-leather-jacket-white-lace-dress-spring-autumn-style_285396-6753.jpg?_wi=1",
imageAlt: "Premium designer handbag",
},
{
@@ -241,7 +241,7 @@ export default function HomePage() {
"Premium shoes and boots crafted by luxury brands. From elegant heels to designer sneakers, find the perfect footwear for every occasion.",
},
]}
imageSrc="http://img.b2bpic.net/free-photo/close-up-clothes-rack-store_23-2148915609.jpg"
imageSrc="http://img.b2bpic.net/free-photo/close-up-clothes-rack-store_23-2148915609.jpg?_wi=1"
imageAlt="Women's luxury fashion collection"
mediaAnimation="blur-reveal"
useInvertedBackground={false}