12 Commits

Author SHA1 Message Date
392b2c55d7 Update src/app/page.tsx 2026-03-08 11:30:43 +00:00
6083188297 Update src/app/layout.tsx 2026-03-08 11:30:43 +00:00
c6f815c1b0 Merge version_3 into main
Merge version_3 into main
2026-03-08 11:25:24 +00:00
3c822d6397 Update src/app/layout.tsx 2026-03-08 11:25:19 +00:00
6f873de3e4 Merge version_3 into main
Merge version_3 into main
2026-03-08 11:24:10 +00:00
90a38c3888 Add src/app/products/page.tsx 2026-03-08 11:24:05 +00:00
d1086074d4 Update src/app/page.tsx 2026-03-08 11:24:04 +00:00
0169697930 Update src/app/layout.tsx 2026-03-08 11:24:04 +00:00
a917ab9320 Merge version_2 into main
Merge version_2 into main
2026-03-08 11:19:47 +00:00
85f194a19c Merge version_2 into main
Merge version_2 into main
2026-03-08 11:18:16 +00:00
8f4441b2e6 Merge version_2 into main
Merge version_2 into main
2026-03-08 11:13:10 +00:00
887ddddb61 Merge version_2 into main
Merge version_2 into main
2026-03-08 11:11:58 +00:00
3 changed files with 127 additions and 1422 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -57,28 +57,22 @@ export default function LandingPage() {
<div id="features" data-section="features">
<FeatureCardTwentySix
features={[
{
title: "Spring/Summer 2025", description: "Contemporary silhouettes with artistic flair", imageSrc: "http://img.b2bpic.net/free-photo/portrait-stylish-woman-posing-fashionable-outfit_23-2149021803.jpg?_wi=1", imageAlt: "Spring collection featured dress", buttonIcon: ArrowRight,
{ title: "Spring/Summer 2025", description: "Contemporary silhouettes with artistic flair", imageSrc: "http://img.b2bpic.net/free-photo/portrait-stylish-woman-posing-fashionable-outfit_23-2149021803.jpg?_wi=1", imageAlt: "Spring collection featured dress", buttonIcon: ArrowRight,
buttonHref: "#products"
},
{
title: "Outerwear Essentials", description: "Premium jackets and coats for modern elegance", imageSrc: "http://img.b2bpic.net/free-photo/portrait-modern-female-grey-coat_613910-7070.jpg?_wi=1", imageAlt: "Luxury outerwear collection", buttonIcon: ArrowRight,
{ title: "Outerwear Essentials", description: "Premium jackets and coats for modern elegance", imageSrc: "http://img.b2bpic.net/free-photo/portrait-modern-female-grey-coat_613910-7070.jpg?_wi=1", imageAlt: "Luxury outerwear collection", buttonIcon: ArrowRight,
buttonHref: "#products"
},
{
title: "Accessories Edit", description: "Curated bags and accessories to complete your look", imageSrc: "http://img.b2bpic.net/free-photo/portrait-rich-woman-outdoors_23-2149548517.jpg?_wi=1", imageAlt: "Premium accessories collection", buttonIcon: ArrowRight,
{ title: "Accessories Edit", description: "Curated bags and accessories to complete your look", imageSrc: "http://img.b2bpic.net/free-photo/portrait-rich-woman-outdoors_23-2149548517.jpg?_wi=1", imageAlt: "Premium accessories collection", buttonIcon: ArrowRight,
buttonHref: "#products"
},
{
title: "Footwear Selection", description: "Statement shoes crafted with precision and style", imageSrc: "http://img.b2bpic.net/free-photo/long-skinny-legs-barefoot-with-high-heeled-sandals-shoes-fashion-details-elegant-beautiful-woman-sitting-vintage-cafe-black-velvet-dress-rich-stylish-lady-elegant-trend-footwear_285396-7257.jpg?_wi=1", imageAlt: "Luxury footwear collection", buttonIcon: ArrowRight,
{ title: "Footwear Selection", description: "Statement shoes crafted with precision and style", imageSrc: "http://img.b2bpic.net/free-photo/long-skinny-legs-barefoot-with-high-heeled-sandals-shoes-fashion-details-elegant-beautiful-woman-sitting-vintage-cafe-black-velvet-dress-rich-stylish-lady-elegant-trend-footwear_285396-7257.jpg?_wi=1", imageAlt: "Luxury footwear collection", buttonIcon: ArrowRight,
buttonHref: "#products"
},
{
title: "Limited Edition", description: "Exclusive pieces available only to select clientele", imageSrc: "http://img.b2bpic.net/free-vector/gradient-business-template-design_23-2149752064.jpg", imageAlt: "Limited edition collection", buttonIcon: ArrowRight,
{ title: "Limited Edition", description: "Exclusive pieces available only to select clientele", imageSrc: "http://img.b2bpic.net/free-vector/gradient-business-template-design_23-2149752064.jpg", imageAlt: "Limited edition collection", buttonIcon: ArrowRight,
buttonHref: "#products"
},
{
title: "Capsule Collection", description: "Versatile essentials designed for timeless appeal", imageSrc: "http://img.b2bpic.net/free-photo/pretty-blonde-woman-eyeglasses-black-silk-jumpsuit-sits-soft-brown-sofa-work-laptop-f_197531-33646.jpg?_wi=1", imageAlt: "Capsule collection showcase", buttonIcon: ArrowRight,
{ title: "Capsule Collection", description: "Versatile essentials designed for timeless appeal", imageSrc: "http://img.b2bpic.net/free-photo/pretty-blonde-woman-eyeglasses-black-silk-jumpsuit-sits-soft-brown-sofa-work-laptop-f_197531-33646.jpg?_wi=1", imageAlt: "Capsule collection showcase", buttonIcon: ArrowRight,
buttonHref: "#products"
},
]}
@@ -165,7 +159,7 @@ export default function LandingPage() {
title="Begin Your Luxury Journey"
description="Discover pieces that define your personal aesthetic. Contact our concierge team for exclusive styling consultations and early access to new collections."
buttons={[
{ text: "Schedule Consultation", href: "#" },
{ text: "Book Concierge Consultation", href: "#" },
{ text: "View Catalog", href: "#products" },
]}
buttonAnimation="slide-up"
@@ -207,4 +201,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}

113
src/app/products/page.tsx Normal file
View File

@@ -0,0 +1,113 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import { Award, ArrowRight } from "lucide-react";
export default function ProductsPage() {
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
defaultTextAnimation="background-highlight"
borderRadius="pill"
contentWidth="mediumSmall"
sizing="largeSmallSizeLargeTitles"
background="noiseDiagonalGradient"
cardStyle="glass-elevated"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="glass"
headingFontWeight="medium"
>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Collections", id: "/" },
{ name: "About", id: "/" },
{ name: "New Arrivals", id: "/" },
{ name: "Stories", id: "/" },
{ name: "Contact", id: "/" },
{ name: "Products", id: "products-page" },
]}
brandName="LUXA"
bottomLeftText="Luxury Fashion House"
bottomRightText="hello@luxa.com"
/>
</div>
<div id="products" data-section="products" className="pt-20">
<ProductCardFour
products={[
{
id: "1", name: "Silk Evening Gown", price: "$3,200", variant: "Black 2 Sizes", imageSrc: "http://img.b2bpic.net/free-photo/portrait-stylish-woman-posing-fashionable-outfit_23-2149021803.jpg?_wi=2", imageAlt: "Black silk evening gown", isFavorited: false,
},
{
id: "2", name: "Tailored Trench Coat", price: "$2,800", variant: "Cream 3 Colors", imageSrc: "http://img.b2bpic.net/free-photo/portrait-modern-female-grey-coat_613910-7070.jpg?_wi=2", imageAlt: "Premium tailored trench coat", isFavorited: false,
},
{
id: "3", name: "Italian Leather Tote", price: "$1,950", variant: "Cognac 4 Options", imageSrc: "http://img.b2bpic.net/free-photo/portrait-rich-woman-outdoors_23-2149548517.jpg?_wi=2", imageAlt: "Italian leather luxury tote", isFavorited: false,
},
{
id: "4", name: "Sculptural Heel", price: "$1,450", variant: "Black Sizes 35-41", imageSrc: "http://img.b2bpic.net/free-photo/long-skinny-legs-barefoot-with-high-heeled-sandals-shoes-fashion-details-elegant-beautiful-woman-sitting-vintage-cafe-black-velvet-dress-rich-stylish-lady-elegant-trend-footwear_285396-7257.jpg?_wi=2", imageAlt: "Sculptural black heel", isFavorited: false,
},
{
id: "5", name: "Cashmere Sweater", price: "$1,650", variant: "Ivory XS-L", imageSrc: "http://img.b2bpic.net/free-photo/portrait-stylish-woman-posing-fashionable-outfit_23-2149021803.jpg?_wi=2", imageAlt: "Premium cashmere sweater", isFavorited: false,
},
{
id: "6", name: "Structured Blazer", price: "$2,400", variant: "Navy XS-XL", imageSrc: "http://img.b2bpic.net/free-photo/portrait-modern-female-grey-coat_613910-7070.jpg?_wi=2", imageAlt: "Tailored structured blazer", isFavorited: false,
},
{
id: "7", name: "Wide-Leg Trousers", price: "$1,800", variant: "Black 24-34", imageSrc: "http://img.b2bpic.net/free-photo/portrait-rich-woman-outdoors_23-2149548517.jpg?_wi=2", imageAlt: "Wide-leg luxury trousers", isFavorited: false,
},
{
id: "8", name: "Leather Belt", price: "$950", variant: "Brown 28-40", imageSrc: "http://img.b2bpic.net/free-photo/long-skinny-legs-barefoot-with-high-heeled-sandals-shoes-fashion-details-elegant-beautiful-woman-sitting-vintage-cafe-black-velvet-dress-rich-stylish-lady-elegant-trend-footwear_285396-7257.jpg?_wi=2", imageAlt: "Italian leather luxury belt", isFavorited: false,
},
]}
title="Complete Collection"
description="Browse our full range of luxury fashion pieces, carefully curated for discerning tastes"
tag="All Products"
tagIcon={Award}
tagAnimation="slide-up"
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
buttonAnimation="slide-up"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="LUXA"
columns={[
{
items: [
{ label: "New Arrivals", href: "/products" },
{ label: "Seasonal Edit", href: "/" },
{ label: "Limited Edition", href: "/products" },
{ label: "All Products", href: "/products" },
],
},
{
items: [
{ label: "Our Story", href: "/" },
{ label: "Craftsmanship", href: "/" },
{ label: "Sustainability", href: "#" },
{ label: "Press", href: "#" },
],
},
{
items: [
{ label: "Contact Us", href: "/" },
{ label: "Instagram", href: "https://instagram.com" },
{ label: "Email", href: "mailto:hello@luxa.com" },
{ label: "Privacy Policy", href: "#" },
],
},
]}
/>
</div>
</ThemeProvider>
);
}