Merge version_1 into main #1
@@ -95,21 +95,21 @@ const ClothingPage = () => {
|
||||
id: "clothing-1",
|
||||
name: "Silk Elegance Blouse",
|
||||
price: "$249.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cute-stylish-woman-with-walking-urban-city-business-street-dressed-warm-brown-coat-blue-suit-spring-autumn-trendy-fashion-street-style-wearing-sunglasses_285396-7147.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cute-stylish-woman-with-walking-urban-city-business-street-dressed-warm-brown-coat-blue-suit-spring-autumn-trendy-fashion-street-style-wearing-sunglasses_285396-7147.jpg?_wi=2",
|
||||
imageAlt: "Silk Elegance blouse",
|
||||
},
|
||||
{
|
||||
id: "clothing-2",
|
||||
name: "Minimalist Premium Dress",
|
||||
price: "$349.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fashionable-woman-black-dress-grey-spring-coat_613910-7084.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fashionable-woman-black-dress-grey-spring-coat_613910-7084.jpg?_wi=2",
|
||||
imageAlt: "Minimalist Premium dress",
|
||||
},
|
||||
{
|
||||
id: "clothing-3",
|
||||
name: "Cashmere Luxury Sweater",
|
||||
price: "$399.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-business-owner-preparing-her-store_23-2149300872.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-business-owner-preparing-her-store_23-2149300872.jpg?_wi=2",
|
||||
imageAlt: "Cashmere Luxury sweater",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -95,21 +95,21 @@ const JewelryPage = () => {
|
||||
id: "jewelry-1",
|
||||
name: "Gold Elegance Bracelet",
|
||||
price: "$599.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-luxurious-golden-ring-rock-concrete-tray_23-2150329711.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-luxurious-golden-ring-rock-concrete-tray_23-2150329711.jpg?_wi=2",
|
||||
imageAlt: "Gold Elegance bracelet",
|
||||
},
|
||||
{
|
||||
id: "jewelry-2",
|
||||
name: "Diamond Luxury Necklace",
|
||||
price: "$1,299.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-gold-chain-jewellery-presentation_23-2149599084.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-gold-chain-jewellery-presentation_23-2149599084.jpg?_wi=2",
|
||||
imageAlt: "Diamond Luxury necklace",
|
||||
},
|
||||
{
|
||||
id: "jewelry-3",
|
||||
name: "Elegant Precious Ring",
|
||||
price: "$799.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-gold-plated-bracelet-ring-set-with-crystal-black-table_140725-12895.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-gold-plated-bracelet-ring-set-with-crystal-black-table_140725-12895.jpg?_wi=2",
|
||||
imageAlt: "Elegant Precious ring",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -1,24 +1,55 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Archivo } 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 { Archivo } 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 archivo = Archivo({
|
||||
variable: "--font-archivo",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Luxe Collections - Premium Perfumes, Clothing & Jewelry",
|
||||
description: "Discover luxury perfumes, designer clothing, and fine jewelry at Luxe Collections. Premium quality with timeless elegance.",
|
||||
keywords: "luxury perfumes, designer clothing, fine jewelry, premium fragrances, luxury fashion, exclusive accessories",
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "Luxe Collections - Premium Shopping Experience",
|
||||
description: "Curated collections of luxury perfumes, clothing, and jewelry.",
|
||||
type: "website",
|
||||
siteName: "Luxe Collections",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/young-man-shopping-menswear-shop_1303-19868.jpg",
|
||||
alt: "Luxe Collections",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Luxe Collections",
|
||||
description: "Discover premium perfumes, clothing, and jewelry.",
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +58,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${archivo.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +72,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -138,63 +138,63 @@ export default function HomePage() {
|
||||
id: "perfume-1",
|
||||
name: "Essence Luxe Eau de Parfum",
|
||||
price: "$189.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-perfume-floating-water_23-2150963092.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-perfume-floating-water_23-2150963092.jpg?_wi=1",
|
||||
imageAlt: "Essence Luxe fragrance",
|
||||
},
|
||||
{
|
||||
id: "perfume-2",
|
||||
name: "Velvet Rose Fragrance",
|
||||
price: "$159.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-cosmetic-products_23-2148532769.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-cosmetic-products_23-2148532769.jpg?_wi=1",
|
||||
imageAlt: "Velvet Rose perfume",
|
||||
},
|
||||
{
|
||||
id: "perfume-3",
|
||||
name: "Crystal Harmony Scent",
|
||||
price: "$179.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-argan-oil-arrangement_23-2148955757.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-argan-oil-arrangement_23-2148955757.jpg?_wi=1",
|
||||
imageAlt: "Crystal Harmony perfume",
|
||||
},
|
||||
{
|
||||
id: "clothing-1",
|
||||
name: "Silk Elegance Blouse",
|
||||
price: "$249.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cute-stylish-woman-with-walking-urban-city-business-street-dressed-warm-brown-coat-blue-suit-spring-autumn-trendy-fashion-street-style-wearing-sunglasses_285396-7147.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cute-stylish-woman-with-walking-urban-city-business-street-dressed-warm-brown-coat-blue-suit-spring-autumn-trendy-fashion-street-style-wearing-sunglasses_285396-7147.jpg?_wi=1",
|
||||
imageAlt: "Silk Elegance blouse",
|
||||
},
|
||||
{
|
||||
id: "clothing-2",
|
||||
name: "Minimalist Premium Dress",
|
||||
price: "$349.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fashionable-woman-black-dress-grey-spring-coat_613910-7084.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fashionable-woman-black-dress-grey-spring-coat_613910-7084.jpg?_wi=1",
|
||||
imageAlt: "Minimalist Premium dress",
|
||||
},
|
||||
{
|
||||
id: "clothing-3",
|
||||
name: "Cashmere Luxury Sweater",
|
||||
price: "$399.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-business-owner-preparing-her-store_23-2149300872.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-business-owner-preparing-her-store_23-2149300872.jpg?_wi=1",
|
||||
imageAlt: "Cashmere Luxury sweater",
|
||||
},
|
||||
{
|
||||
id: "jewelry-1",
|
||||
name: "Gold Elegance Bracelet",
|
||||
price: "$599.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-luxurious-golden-ring-rock-concrete-tray_23-2150329711.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-luxurious-golden-ring-rock-concrete-tray_23-2150329711.jpg?_wi=1",
|
||||
imageAlt: "Gold Elegance bracelet",
|
||||
},
|
||||
{
|
||||
id: "jewelry-2",
|
||||
name: "Diamond Luxury Necklace",
|
||||
price: "$1,299.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-gold-chain-jewellery-presentation_23-2149599084.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-gold-chain-jewellery-presentation_23-2149599084.jpg?_wi=1",
|
||||
imageAlt: "Diamond Luxury necklace",
|
||||
},
|
||||
{
|
||||
id: "jewelry-3",
|
||||
name: "Elegant Precious Ring",
|
||||
price: "$799.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-gold-plated-bracelet-ring-set-with-crystal-black-table_140725-12895.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-gold-plated-bracelet-ring-set-with-crystal-black-table_140725-12895.jpg?_wi=1",
|
||||
imageAlt: "Elegant Precious ring",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -49,21 +49,21 @@ export default function PerfumesPage() {
|
||||
id: "perfume-1",
|
||||
name: "Essence Luxe Eau de Parfum",
|
||||
price: "$189.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-perfume-floating-water_23-2150963092.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-perfume-floating-water_23-2150963092.jpg?_wi=2",
|
||||
imageAlt: "Essence Luxe fragrance",
|
||||
},
|
||||
{
|
||||
id: "perfume-2",
|
||||
name: "Velvet Rose Fragrance",
|
||||
price: "$159.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-cosmetic-products_23-2148532769.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-cosmetic-products_23-2148532769.jpg?_wi=2",
|
||||
imageAlt: "Velvet Rose perfume",
|
||||
},
|
||||
{
|
||||
id: "perfume-3",
|
||||
name: "Crystal Harmony Scent",
|
||||
price: "$179.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-argan-oil-arrangement_23-2148955757.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-argan-oil-arrangement_23-2148955757.jpg?_wi=2",
|
||||
imageAlt: "Crystal Harmony perfume",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user