Merge version_1 into main #1
@@ -52,7 +52,7 @@ export default function AboutPage() {
|
||||
description="We believe fashion is more than clothing—it's self-expression. Since 2015, we've been committed to bringing premium, sustainable fashion to style-conscious individuals worldwide."
|
||||
subdescription="Our mission is to make luxury fashion accessible without compromising on quality or ethics. Every piece in our collection is carefully selected to ensure it meets our rigorous standards of excellence."
|
||||
icon={Heart}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/young-man-shopping-menswear-shop_1303-19869.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/young-man-shopping-menswear-shop_1303-19869.jpg?_wi=2"
|
||||
imageAlt="About our fashion brand"
|
||||
mediaAnimation="blur-reveal"
|
||||
useInvertedBackground={false}
|
||||
@@ -77,7 +77,7 @@ export default function AboutPage() {
|
||||
role: "Founder & Creative Director",
|
||||
company: "LuxeStyle Co.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-chain-necklace-posing_23-2149403058.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-chain-necklace-posing_23-2149403058.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
@@ -85,7 +85,7 @@ export default function AboutPage() {
|
||||
role: "Head of Design",
|
||||
company: "LuxeStyle Co.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1681.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1681.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
@@ -93,7 +93,7 @@ export default function AboutPage() {
|
||||
role: "Sustainability Lead",
|
||||
company: "LuxeStyle Co.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-blonde-confident-young-businesswoman-against-gray-background_23-2148029500.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-blonde-confident-young-businesswoman-against-gray-background_23-2148029500.jpg?_wi=3",
|
||||
},
|
||||
]}
|
||||
kpiItems={[
|
||||
|
||||
@@ -72,7 +72,7 @@ export default function ContactPage() {
|
||||
description="Our dedicated customer service team is available 24/7 to assist you with any questions about our products, sizing, or your order."
|
||||
subdescription="Whether you need styling advice, have questions about fabrics and materials, or need help with an order, our fashion experts are ready to provide personalized assistance and ensure your shopping experience is exceptional."
|
||||
icon={MessageSquare}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/young-man-shopping-menswear-shop_1303-19869.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/young-man-shopping-menswear-shop_1303-19869.jpg?_wi=3"
|
||||
imageAlt="Customer support team"
|
||||
mediaAnimation="blur-reveal"
|
||||
useInvertedBackground={false}
|
||||
|
||||
@@ -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: "LuxeStyle - Premium Fashion Collections",
|
||||
description: "Discover curated premium fashion items and elegant clothing collections. Shop luxury styles for every occasion with LuxeStyle.",
|
||||
keywords: "fashion, premium clothing, luxury fashion, designer wear, fashion collections, elegant style",
|
||||
metadataBase: new URL("https://luxestyle.com"),
|
||||
alternates: {
|
||||
canonical: "https://luxestyle.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "LuxeStyle - Premium Fashion Collections",
|
||||
description: "Discover curated premium fashion items and elegant clothing collections.",
|
||||
url: "https://luxestyle.com",
|
||||
siteName: "LuxeStyle",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/picture-charming-caucasian-lady-sits-black-leather-armchair-poses-camera_132075-9613.jpg",
|
||||
alt: "LuxeStyle Fashion Collection",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "LuxeStyle - Premium Fashion Collections",
|
||||
description: "Discover curated premium fashion items and elegant clothing collections.",
|
||||
images: ["http://img.b2bpic.net/free-photo/picture-charming-caucasian-lady-sits-black-leather-armchair-poses-camera_132075-9613.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>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -93,21 +93,21 @@ export default function HomePage() {
|
||||
handle: "@sarahs_style",
|
||||
testimonial: "The quality and design are exceptional. Became my go-to for fashion.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-chain-necklace-posing_23-2149403058.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-chain-necklace-posing_23-2149403058.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
name: "Emma L.",
|
||||
handle: "@emmastyle",
|
||||
testimonial: "Love the curated collections. Every piece is perfect.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1681.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1681.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
name: "Jessica R.",
|
||||
handle: "@jess_fashion",
|
||||
testimonial: "Best online fashion experience I've had. Highly recommend!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-blonde-confident-young-businesswoman-against-gray-background_23-2148029500.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-blonde-confident-young-businesswoman-against-gray-background_23-2148029500.jpg?_wi=1",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
@@ -123,7 +123,7 @@ export default function HomePage() {
|
||||
description="We believe fashion is more than clothing—it's self-expression. Since 2015, we've been committed to bringing premium, sustainable fashion to style-conscious individuals worldwide."
|
||||
subdescription="Our mission is to make luxury fashion accessible without compromising on quality or ethics. Every piece in our collection is carefully selected to ensure it meets our rigorous standards of excellence."
|
||||
icon={Heart}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/young-man-shopping-menswear-shop_1303-19869.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/young-man-shopping-menswear-shop_1303-19869.jpg?_wi=1"
|
||||
imageAlt="About our fashion brand"
|
||||
mediaAnimation="blur-reveal"
|
||||
useInvertedBackground={false}
|
||||
@@ -147,42 +147,42 @@ export default function HomePage() {
|
||||
id: "1",
|
||||
name: "Premium Leather Jacket",
|
||||
price: "$299",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/black-suit-white-shirt-is-hanging-from-hanger-from-door_181624-9326.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/black-suit-white-shirt-is-hanging-from-hanger-from-door_181624-9326.jpg?_wi=1",
|
||||
imageAlt: "Leather jacket",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Elegant Evening Dress",
|
||||
price: "$189",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-trying-dress_23-2149241369.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-trying-dress_23-2149241369.jpg?_wi=1",
|
||||
imageAlt: "Evening dress",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Classic Denim Collection",
|
||||
price: "$129",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-beautiful-woman-lying-floor-covered-beige-fabric-posing-camera_8353-11663.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-beautiful-woman-lying-floor-covered-beige-fabric-posing-camera_8353-11663.jpg?_wi=1",
|
||||
imageAlt: "Denim collection",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Designer Handbag",
|
||||
price: "$349",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-with-futuristic-robotic-body-part_23-2151401399.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-with-futuristic-robotic-body-part_23-2151401399.jpg?_wi=1",
|
||||
imageAlt: "Designer handbag",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Luxe Sunglasses",
|
||||
price: "$199",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sun-glasses-table_140725-7459.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sun-glasses-table_140725-7459.jpg?_wi=1",
|
||||
imageAlt: "Sunglasses",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Silk Scarf Set",
|
||||
price: "$89",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-world-travel-map-with-passport_23-2149460004.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-world-travel-map-with-passport_23-2149460004.jpg?_wi=1",
|
||||
imageAlt: "Silk scarves",
|
||||
},
|
||||
]}
|
||||
@@ -214,7 +214,7 @@ export default function HomePage() {
|
||||
role: "Fashion Blogger",
|
||||
company: "Style Chronicles",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-chain-necklace-posing_23-2149403058.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-chain-necklace-posing_23-2149403058.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
@@ -222,7 +222,7 @@ export default function HomePage() {
|
||||
role: "Creative Director",
|
||||
company: "Design Studio",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1681.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1681.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
@@ -230,7 +230,7 @@ export default function HomePage() {
|
||||
role: "Entrepreneur",
|
||||
company: "Tech Startup",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-blonde-confident-young-businesswoman-against-gray-background_23-2148029500.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-blonde-confident-young-businesswoman-against-gray-background_23-2148029500.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
|
||||
@@ -56,42 +56,42 @@ export default function ProductsPage() {
|
||||
id: "1",
|
||||
name: "Premium Leather Jacket",
|
||||
price: "$299",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/black-suit-white-shirt-is-hanging-from-hanger-from-door_181624-9326.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/black-suit-white-shirt-is-hanging-from-hanger-from-door_181624-9326.jpg?_wi=2",
|
||||
imageAlt: "Leather jacket",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Elegant Evening Dress",
|
||||
price: "$189",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-trying-dress_23-2149241369.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-trying-dress_23-2149241369.jpg?_wi=2",
|
||||
imageAlt: "Evening dress",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Classic Denim Collection",
|
||||
price: "$129",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-beautiful-woman-lying-floor-covered-beige-fabric-posing-camera_8353-11663.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-beautiful-woman-lying-floor-covered-beige-fabric-posing-camera_8353-11663.jpg?_wi=2",
|
||||
imageAlt: "Denim collection",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Designer Handbag",
|
||||
price: "$349",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-with-futuristic-robotic-body-part_23-2151401399.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-with-futuristic-robotic-body-part_23-2151401399.jpg?_wi=2",
|
||||
imageAlt: "Designer handbag",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Luxe Sunglasses",
|
||||
price: "$199",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sun-glasses-table_140725-7459.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sun-glasses-table_140725-7459.jpg?_wi=2",
|
||||
imageAlt: "Sunglasses",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Silk Scarf Set",
|
||||
price: "$89",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-world-travel-map-with-passport_23-2149460004.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-world-travel-map-with-passport_23-2149460004.jpg?_wi=2",
|
||||
imageAlt: "Silk scarves",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user