Update src/app/collections/page.tsx
This commit is contained in:
@@ -4,6 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
||||||
import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
|
import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
|
||||||
|
import ContactText from '@/components/sections/contact/ContactText';
|
||||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||||
import { ShoppingBag } from "lucide-react";
|
import { ShoppingBag } from "lucide-react";
|
||||||
|
|
||||||
@@ -39,36 +40,16 @@ export default function CollectionsPage() {
|
|||||||
description="Browse our full range of handcrafted fragrances, from timeless classics to modern innovations."
|
description="Browse our full range of handcrafted fragrances, from timeless classics to modern innovations."
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", name: "Lavanda Classica", price: "$85.00", imageSrc: "https://img.b2bpic.net/free-photo/closeup-shot-beautifully-shaped-glass-bottles-filled-with-perfume_181624-28370.jpg", imageAlt: "Lavanda Classica eau de toilette", initialQuantity: 1
|
||||||
name: "Lavanda Classica",
|
|
||||||
price: "$85.00",
|
|
||||||
imageSrc: "https://img.b2bpic.net/free-photo/closeup-shot-beautifully-shaped-glass-bottles-filled-with-perfume_181624-28370.jpg",
|
|
||||||
imageAlt: "Lavanda Classica eau de toilette",
|
|
||||||
initialQuantity: 1
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", name: "Lavanda Floral", price: "$95.00", imageSrc: "https://img.b2bpic.net/free-photo/elegant-vegan-alcohol-arrangement_23-2149337694.jpg", imageAlt: "Lavanda Floral eau de parfum", initialQuantity: 1
|
||||||
name: "Lavanda Floral",
|
|
||||||
price: "$95.00",
|
|
||||||
imageSrc: "https://img.b2bpic.net/free-photo/elegant-vegan-alcohol-arrangement_23-2149337694.jpg",
|
|
||||||
imageAlt: "Lavanda Floral eau de parfum",
|
|
||||||
initialQuantity: 1
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", name: "Lavanda Oriental", price: "$110.00", imageSrc: "https://img.b2bpic.net/free-photo/elegant-vegan-alcohol-arrangement_23-2149337695.jpg", imageAlt: "Lavanda Oriental exclusive fragrance", initialQuantity: 1
|
||||||
name: "Lavanda Oriental",
|
|
||||||
price: "$110.00",
|
|
||||||
imageSrc: "https://img.b2bpic.net/free-photo/elegant-vegan-alcohol-arrangement_23-2149337695.jpg",
|
|
||||||
imageAlt: "Lavanda Oriental exclusive fragrance",
|
|
||||||
initialQuantity: 1
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", name: "Lavanda Noir", price: "$125.00", imageSrc: "https://img.b2bpic.net/free-photo/still-life-beauty-products-based-regenerative-agriculture_23-2150721383.jpg", imageAlt: "Lavanda Noir intense fragrance", initialQuantity: 1
|
||||||
name: "Lavanda Noir",
|
|
||||||
price: "$125.00",
|
|
||||||
imageSrc: "https://img.b2bpic.net/free-photo/still-life-beauty-products-based-regenerative-agriculture_23-2150721383.jpg",
|
|
||||||
imageAlt: "Lavanda Noir intense fragrance",
|
|
||||||
initialQuantity: 1
|
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
gridVariant="four-items-2x2-equal-grid"
|
gridVariant="four-items-2x2-equal-grid"
|
||||||
@@ -86,47 +67,20 @@ export default function CollectionsPage() {
|
|||||||
tagIcon={ShoppingBag}
|
tagIcon={ShoppingBag}
|
||||||
plans={[
|
plans={[
|
||||||
{
|
{
|
||||||
id: "classic",
|
id: "classic", title: "Classic Collection", price: "$85", period: "per bottle (50ml)", imageSrc: "https://img.b2bpic.net/free-photo/containers-liquid-soap-shampoo-with-dispenser-is-sold-supermarket_169016-50305.jpg", imageAlt: "Lavanda Classica fragrance", features: [
|
||||||
title: "Classic Collection",
|
"Eau de Toilette concentration", "Timeless lavender essence", "Lasting 6-8 hours", "Elegant glass bottle"
|
||||||
price: "$85",
|
|
||||||
period: "per bottle (50ml)",
|
|
||||||
imageSrc: "https://img.b2bpic.net/free-photo/containers-liquid-soap-shampoo-with-dispenser-is-sold-supermarket_169016-50305.jpg",
|
|
||||||
imageAlt: "Lavanda Classica fragrance",
|
|
||||||
features: [
|
|
||||||
"Eau de Toilette concentration",
|
|
||||||
"Timeless lavender essence",
|
|
||||||
"Lasting 6-8 hours",
|
|
||||||
"Elegant glass bottle"
|
|
||||||
],
|
],
|
||||||
button: { text: "Shop Now", href: "/collections" }
|
button: { text: "Shop Now", href: "/collections" }
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "premium",
|
id: "premium", title: "Premium Selection", price: "$95", period: "per bottle (75ml)", imageSrc: "https://img.b2bpic.net/free-photo/elegant-vegan-alcohol-arrangement_23-2149337714.jpg", imageAlt: "Lavanda Premium fragrance", features: [
|
||||||
title: "Premium Selection",
|
"Eau de Parfum concentration", "Complex multi-note composition", "Lasting 10-12 hours", "Luxury presentation box"
|
||||||
price: "$95",
|
|
||||||
period: "per bottle (75ml)",
|
|
||||||
imageSrc: "https://img.b2bpic.net/free-photo/elegant-vegan-alcohol-arrangement_23-2149337714.jpg",
|
|
||||||
imageAlt: "Lavanda Premium fragrance",
|
|
||||||
features: [
|
|
||||||
"Eau de Parfum concentration",
|
|
||||||
"Complex multi-note composition",
|
|
||||||
"Lasting 10-12 hours",
|
|
||||||
"Luxury presentation box"
|
|
||||||
],
|
],
|
||||||
button: { text: "Shop Now", href: "/collections" }
|
button: { text: "Shop Now", href: "/collections" }
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "exclusive",
|
id: "exclusive", title: "Exclusive Edition", price: "$110", period: "per bottle (100ml)", imageSrc: "https://img.b2bpic.net/free-photo/still-life-beauty-products-based-regenerative-agriculture_23-2150721383.jpg", imageAlt: "Lavanda Exclusive rare fragrance", features: [
|
||||||
title: "Exclusive Edition",
|
"Extrait de Parfum concentration", "Limited annual release", "Lasting 14+ hours", "Collector's crystal bottle"
|
||||||
price: "$110",
|
|
||||||
period: "per bottle (100ml)",
|
|
||||||
imageSrc: "https://img.b2bpic.net/free-photo/still-life-beauty-products-based-regenerative-agriculture_23-2150721383.jpg",
|
|
||||||
imageAlt: "Lavanda Exclusive rare fragrance",
|
|
||||||
features: [
|
|
||||||
"Extrait de Parfum concentration",
|
|
||||||
"Limited annual release",
|
|
||||||
"Lasting 14+ hours",
|
|
||||||
"Collector's crystal bottle"
|
|
||||||
],
|
],
|
||||||
button: { text: "Reserve Now", href: "/collections" }
|
button: { text: "Reserve Now", href: "/collections" }
|
||||||
}
|
}
|
||||||
@@ -154,24 +108,21 @@ export default function CollectionsPage() {
|
|||||||
copyrightText="© 2025 Lavanda Fragrances. All rights reserved."
|
copyrightText="© 2025 Lavanda Fragrances. All rights reserved."
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Collections",
|
title: "Collections", items: [
|
||||||
items: [
|
|
||||||
{ label: "All Fragrances", href: "/collections" },
|
{ label: "All Fragrances", href: "/collections" },
|
||||||
{ label: "New Arrivals", href: "/collections" },
|
{ label: "New Arrivals", href: "/collections" },
|
||||||
{ label: "Limited Edition", href: "/collections" }
|
{ label: "Limited Edition", href: "/collections" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Company",
|
title: "Company", items: [
|
||||||
items: [
|
|
||||||
{ label: "About Us", href: "/about" },
|
{ label: "About Us", href: "/about" },
|
||||||
{ label: "Our Story", href: "/about" },
|
{ label: "Our Story", href: "/about" },
|
||||||
{ label: "Careers", href: "/careers" }
|
{ label: "Careers", href: "/careers" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Support",
|
title: "Support", items: [
|
||||||
items: [
|
|
||||||
{ label: "Contact Us", href: "/contact" },
|
{ label: "Contact Us", href: "/contact" },
|
||||||
{ label: "FAQ", href: "/faq" },
|
{ label: "FAQ", href: "/faq" },
|
||||||
{ label: "Shipping Info", href: "/shipping" }
|
{ label: "Shipping Info", href: "/shipping" }
|
||||||
|
|||||||
Reference in New Issue
Block a user