diff --git a/src/app/cart/page.tsx b/src/app/cart/page.tsx index 54d6ed7..0494c8a 100644 --- a/src/app/cart/page.tsx +++ b/src/app/cart/page.tsx @@ -19,35 +19,19 @@ export default function CartPage() { const cartItems = [ { - id: "cart-1", - name: "Essence Noir - Men's Cologne", - price: "$89.99", - imageSrc: "http://img.b2bpic.net/free-photo/green-bottle-parfum-table_140725-7027.jpg?_wi=5", - imageAlt: "Essence Noir luxury mens cologne bottle", - initialQuantity: 2, + id: "cart-1", name: "Essence Noir - Men's Cologne", price: "$89.99", imageSrc: "http://img.b2bpic.net/free-photo/green-bottle-parfum-table_140725-7027.jpg", imageAlt: "Essence Noir luxury mens cologne bottle", initialQuantity: 2, }, { - id: "cart-2", - name: "Rose Elegance - Women's Perfume", - price: "$94.99", - imageSrc: "http://img.b2bpic.net/free-vector/engraving-hand-drawn-floral-cards-collection_23-2149017015.jpg?_wi=5", - imageAlt: "Rose Elegance premium womens perfume", - initialQuantity: 1, + id: "cart-2", name: "Rose Elegance - Women's Perfume", price: "$94.99", imageSrc: "http://img.b2bpic.net/free-vector/engraving-hand-drawn-floral-cards-collection_23-2149017015.jpg", imageAlt: "Rose Elegance premium womens perfume", initialQuantity: 1, }, { - id: "cart-3", - name: "Midnight Dream - Premium Cologne", - price: "$99.99", - imageSrc: "http://img.b2bpic.net/free-photo/oriental-spices-small-bottles_23-2147684854.jpg?_wi=5", - imageAlt: "Midnight Dream bestseller mens cologne", - initialQuantity: 1, + id: "cart-3", name: "Midnight Dream - Premium Cologne", price: "$99.99", imageSrc: "http://img.b2bpic.net/free-photo/oriental-spices-small-bottles_23-2147684854.jpg", imageAlt: "Midnight Dream bestseller mens cologne", initialQuantity: 1, }, ]; const footerColumns = [ { - title: "Shop", - items: [ + title: "Shop", items: [ { label: "Men's Perfumes", href: "/shop?category=mens" }, { label: "Women's Perfumes", href: "/shop?category=womens" }, { label: "Unisex Fragrances", href: "/shop?category=unisex" }, @@ -56,8 +40,7 @@ export default function CartPage() { ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, { label: "Our Story", href: "/about" }, { label: "Blog", href: "/blog" }, @@ -66,8 +49,7 @@ export default function CartPage() { ], }, { - title: "Support", - items: [ + title: "Support", items: [ { label: "FAQ", href: "/faq" }, { label: "Shipping Info", href: "/shipping" }, { label: "Returns", href: "/returns" }, @@ -76,8 +58,7 @@ export default function CartPage() { ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "/privacy" }, { label: "Terms of Service", href: "/terms" }, { label: "Cookie Policy", href: "/cookies" }, @@ -94,7 +75,7 @@ export default function CartPage() { borderRadius="rounded" contentWidth="small" sizing="mediumSizeLargeTitles" - background="grid" + background="circleGradient" cardStyle="gradient-bordered" primaryButtonStyle="diagonal-gradient" secondaryButtonStyle="radial-glow" @@ -176,7 +157,7 @@ export default function CartPage() { text="Don't forget to subscribe for exclusive deals and early access to new collections. Get 15% off your order today." animationType="entrance-slide" buttons={[{ text: "Subscribe Now", href: "#newsletter" }]} - background={{ variant: "grid" }} + background={{ variant: "plain" }} useInvertedBackground={true} /> diff --git a/src/app/checkout/page.tsx b/src/app/checkout/page.tsx index 7f9bb70..14c2121 100644 --- a/src/app/checkout/page.tsx +++ b/src/app/checkout/page.tsx @@ -18,8 +18,7 @@ export default function CheckoutPage() { const footerColumns = [ { - title: "Shop", - items: [ + title: "Shop", items: [ { label: "Men's Perfumes", href: "/shop?category=mens" }, { label: "Women's Perfumes", href: "/shop?category=womens" }, { label: "Unisex Fragrances", href: "/shop?category=unisex" }, @@ -28,8 +27,7 @@ export default function CheckoutPage() { ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, { label: "Our Story", href: "/about" }, { label: "Blog", href: "/blog" }, @@ -38,8 +36,7 @@ export default function CheckoutPage() { ], }, { - title: "Support", - items: [ + title: "Support", items: [ { label: "FAQ", href: "/faq" }, { label: "Shipping Info", href: "/shipping" }, { label: "Returns", href: "/returns" }, @@ -48,8 +45,7 @@ export default function CheckoutPage() { ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "/privacy" }, { label: "Terms of Service", href: "/terms" }, { label: "Cookie Policy", href: "/cookies" }, @@ -66,7 +62,7 @@ export default function CheckoutPage() { borderRadius="rounded" contentWidth="small" sizing="mediumSizeLargeTitles" - background="grid" + background="circleGradient" cardStyle="gradient-bordered" primaryButtonStyle="diagonal-gradient" secondaryButtonStyle="radial-glow" @@ -254,7 +250,7 @@ export default function CheckoutPage() { text="We stand behind every purchase with our 100% authenticity guarantee and satisfaction promise. Premium luxury deserves premium service." animationType="entrance-slide" buttons={[{ text: "View Guarantees", href: "/guarantees" }]} - background={{ variant: "grid" }} + background={{ variant: "plain" }} useInvertedBackground={false} /> diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 00c73f1..46583e8 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -16,7 +16,7 @@ export default function ContactPage() { borderRadius="rounded" contentWidth="small" sizing="mediumSizeLargeTitles" - background="grid" + background="circleGradient" cardStyle="gradient-bordered" primaryButtonStyle="diagonal-gradient" secondaryButtonStyle="radial-glow" @@ -33,9 +33,7 @@ export default function ContactPage() { { name: "Cart", id: "cart" }, ]} button={{ - text: "Checkout", - href: "/checkout", - }} + text: "Checkout", href: "/checkout"}} /> @@ -47,7 +45,7 @@ export default function ContactPage() { { text: "Send Message", href: "#contact-form" }, { text: "Call Us", href: "tel:+1-800-SCENT-01" }, ]} - background={{ variant: "grid" }} + background={{ variant: "plain" }} useInvertedBackground={false} /> @@ -65,45 +63,21 @@ export default function ContactPage() { animationType="smooth" faqs={[ { - id: "faq-1", - title: "Are all perfumes authentic?", - content: "Yes, 100% guaranteed authentic. All our fragrances are sourced directly from official distributors and luxury brand partners. We guarantee authenticity on every product or your money back.", - }, + id: "faq-1", title: "Are all perfumes authentic?", content: "Yes, 100% guaranteed authentic. All our fragrances are sourced directly from official distributors and luxury brand partners. We guarantee authenticity on every product or your money back."}, { - id: "faq-2", - title: "What is your return policy?", - content: "We offer a 30-day money-back guarantee on all unopened products. If you're not completely satisfied, simply return the item in original condition for a full refund, no questions asked.", - }, + id: "faq-2", title: "What is your return policy?", content: "We offer a 30-day money-back guarantee on all unopened products. If you're not completely satisfied, simply return the item in original condition for a full refund, no questions asked."}, { - id: "faq-3", - title: "How long does shipping take?", - content: "Standard shipping typically takes 5-7 business days within the US. Express shipping (2-3 days) and international shipping are available. All orders are carefully packaged to ensure safe delivery.", - }, + id: "faq-3", title: "How long does shipping take?", content: "Standard shipping typically takes 5-7 business days within the US. Express shipping (2-3 days) and international shipping are available. All orders are carefully packaged to ensure safe delivery."}, { - id: "faq-4", - title: "Do you offer international shipping?", - content: "Yes! We ship to over 150 countries worldwide. International orders may take 10-21 business days depending on destination. Customs duties may apply based on your country's regulations.", - }, + id: "faq-4", title: "Do you offer international shipping?", content: "Yes! We ship to over 150 countries worldwide. International orders may take 10-21 business days depending on destination. Customs duties may apply based on your country's regulations."}, { - id: "faq-5", - title: "How do I know which fragrance to choose?", - content: "We provide detailed fragrance profiles including scent notes, intensity levels, and occasions. Our customer reviews are helpful, and our team is available via chat to help you find your perfect scent.", - }, + id: "faq-5", title: "How do I know which fragrance to choose?", content: "We provide detailed fragrance profiles including scent notes, intensity levels, and occasions. Our customer reviews are helpful, and our team is available via chat to help you find your perfect scent."}, { - id: "faq-6", - title: "What payment methods do you accept?", - content: "We accept all major credit cards (Visa, Mastercard, American Express), PayPal, Apple Pay, Google Pay, and secure bank transfers. All transactions are encrypted and 100% secure.", - }, + id: "faq-6", title: "What payment methods do you accept?", content: "We accept all major credit cards (Visa, Mastercard, American Express), PayPal, Apple Pay, Google Pay, and secure bank transfers. All transactions are encrypted and 100% secure."}, { - id: "faq-7", - title: "Can I track my order?", - content: "Absolutely! You'll receive a tracking number via email as soon as your order ships. You can track your package in real-time on our website or through the carrier's site.", - }, + id: "faq-7", title: "Can I track my order?", content: "Absolutely! You'll receive a tracking number via email as soon as your order ships. You can track your package in real-time on our website or through the carrier's site."}, { - id: "faq-8", - title: "Do you have a loyalty program?", - content: "Yes! Our VIP membership rewards customers with points on every purchase, exclusive early access to new collections, birthday discounts, and special promotions.", - }, + id: "faq-8", title: "Do you have a loyalty program?", content: "Yes! Our VIP membership rewards customers with points on every purchase, exclusive early access to new collections, birthday discounts, and special promotions."}, ]} /> @@ -112,8 +86,7 @@ export default function ContactPage() { @@ -174,36 +143,16 @@ export default function HomePage() { gridVariant="four-items-2x2-equal-grid" products={[ { - id: "best-1", - name: "Midnight Dream - Premium Cologne", - price: "$99.99", - imageSrc: "http://img.b2bpic.net/free-photo/oriental-spices-small-bottles_23-2147684854.jpg?_wi=2", - imageAlt: "Midnight Dream bestseller mens cologne", - initialQuantity: 1, + id: "best-1", name: "Midnight Dream - Premium Cologne", price: "$99.99", imageSrc: "http://img.b2bpic.net/free-photo/oriental-spices-small-bottles_23-2147684854.jpg", imageAlt: "Midnight Dream bestseller mens cologne", initialQuantity: 1, }, { - id: "best-2", - name: "Crystal Bloom - Luxury Perfume", - price: "$104.99", - imageSrc: "http://img.b2bpic.net/free-vector/colorful-spring-sale-banners_23-2148449344.jpg?_wi=3", - imageAlt: "Crystal Bloom bestseller womens perfume", - initialQuantity: 1, + id: "best-2", name: "Crystal Bloom - Luxury Perfume", price: "$104.99", imageSrc: "http://img.b2bpic.net/free-vector/colorful-spring-sale-banners_23-2148449344.jpg", imageAlt: "Crystal Bloom bestseller womens perfume", initialQuantity: 1, }, { - id: "best-3", - name: "Golden Hour - Elegant Fragrance", - price: "$94.99", - imageSrc: "http://img.b2bpic.net/free-photo/front-view-bath-concept-accessories_23-2148419407.jpg", - imageAlt: "Golden Hour bestseller luxury fragrance", - initialQuantity: 1, + id: "best-3", name: "Golden Hour - Elegant Fragrance", price: "$94.99", imageSrc: "http://img.b2bpic.net/free-photo/front-view-bath-concept-accessories_23-2148419407.jpg", imageAlt: "Golden Hour bestseller luxury fragrance", initialQuantity: 1, }, { - id: "best-4", - name: "Moonlight Essence - Premium Scent", - price: "$89.99", - imageSrc: "http://img.b2bpic.net/free-photo/luxury-perfume-fragrance-bottle_116380-80.jpg?_wi=1", - imageAlt: "Moonlight Essence bestseller premium cologne", - initialQuantity: 1, + id: "best-4", name: "Moonlight Essence - Premium Scent", price: "$89.99", imageSrc: "http://img.b2bpic.net/free-photo/luxury-perfume-fragrance-bottle_116380-80.jpg", imageAlt: "Moonlight Essence bestseller premium cologne", initialQuantity: 1, }, ]} ariaLabel="Best selling fragrances section" @@ -222,53 +171,17 @@ export default function HomePage() { animationType="slide-up" testimonials={[ { - id: "testi-1", - name: "Sarah Mitchell", - role: "Fashion Enthusiast", - testimonial: "Royal Scent offers the most authentic luxury fragrances. Every purchase feels like an investment in elegance. Highly recommended!", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-business-woman-park_1303-28940.jpg?_wi=1", - imageAlt: "Sarah Mitchell testimonial", - }, + id: "testi-1", name: "Sarah Mitchell", role: "Fashion Enthusiast", testimonial: "Royal Scent offers the most authentic luxury fragrances. Every purchase feels like an investment in elegance. Highly recommended!", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-business-woman-park_1303-28940.jpg", imageAlt: "Sarah Mitchell testimonial"}, { - id: "testi-2", - name: "James Richardson", - role: "Executive", - testimonial: "The quality and selection are unmatched. Their customer service made my shopping experience absolutely seamless and enjoyable.", - imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-handsome-stylish-man-elegant-black-suit-dark-background_613910-14840.jpg?_wi=1", - imageAlt: "James Richardson testimonial", - }, + id: "testi-2", name: "James Richardson", role: "Executive", testimonial: "The quality and selection are unmatched. Their customer service made my shopping experience absolutely seamless and enjoyable.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-handsome-stylish-man-elegant-black-suit-dark-background_613910-14840.jpg", imageAlt: "James Richardson testimonial"}, { - id: "testi-3", - name: "Emma Thompson", - role: "Beauty Blogger", - testimonial: "I've been a loyal customer for over a year. The scents are genuine, the packaging is stunning, and delivery is always prompt.", - imageSrc: "http://img.b2bpic.net/free-photo/relaxed-serious-businesswoman-leaning-wall_1262-1883.jpg?_wi=1", - imageAlt: "Emma Thompson testimonial", - }, + id: "testi-3", name: "Emma Thompson", role: "Beauty Blogger", testimonial: "I've been a loyal customer for over a year. The scents are genuine, the packaging is stunning, and delivery is always prompt.", imageSrc: "http://img.b2bpic.net/free-photo/relaxed-serious-businesswoman-leaning-wall_1262-1883.jpg", imageAlt: "Emma Thompson testimonial"}, { - id: "testi-4", - name: "Marcus Williams", - role: "Entrepreneur", - testimonial: "Royal Scent understands luxury. Every fragrance is carefully selected. Best investment for someone who values quality and sophistication.", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-business-man-by-skyscraper_1303-10312.jpg?_wi=1", - imageAlt: "Marcus Williams testimonial", - }, + id: "testi-4", name: "Marcus Williams", role: "Entrepreneur", testimonial: "Royal Scent understands luxury. Every fragrance is carefully selected. Best investment for someone who values quality and sophistication.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-business-man-by-skyscraper_1303-10312.jpg", imageAlt: "Marcus Williams testimonial"}, { - id: "testi-5", - name: "Victoria Chen", - role: "Interior Designer", - testimonial: "The attention to detail is incredible. From the selection process to packaging and delivery, everything reflects genuine luxury.", - imageSrc: "http://img.b2bpic.net/free-photo/business-woman-standing-with-crossed-arms_23-2148095674.jpg", - imageAlt: "Victoria Chen testimonial", - }, + id: "testi-5", name: "Victoria Chen", role: "Interior Designer", testimonial: "The attention to detail is incredible. From the selection process to packaging and delivery, everything reflects genuine luxury.", imageSrc: "http://img.b2bpic.net/free-photo/business-woman-standing-with-crossed-arms_23-2148095674.jpg", imageAlt: "Victoria Chen testimonial"}, { - id: "testi-6", - name: "David Anderson", - role: "Luxury Retailer", - testimonial: "I recommend Royal Scent to all my clients seeking authentic, premium fragrances. Their collection is truly world-class.", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-sexy-handsome-fashion-businessman-model-dressed-elegant-blue-suit-posing-street-background-metrosexual_158538-10527.jpg", - imageAlt: "David Anderson testimonial", - }, + id: "testi-6", name: "David Anderson", role: "Luxury Retailer", testimonial: "I recommend Royal Scent to all my clients seeking authentic, premium fragrances. Their collection is truly world-class.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-sexy-handsome-fashion-businessman-model-dressed-elegant-blue-suit-posing-street-background-metrosexual_158538-10527.jpg", imageAlt: "David Anderson testimonial"}, ]} ariaLabel="Customer testimonials section" /> @@ -279,7 +192,7 @@ export default function HomePage() { text="Get exclusive access to limited-edition fragrances and special promotions. Join our VIP community and receive 15% off your first order." animationType="entrance-slide" buttons={[{ text: "Subscribe Now", href: "#newsletter" }]} - background={{ variant: "grid" }} + background={{ variant: "plain" }} useInvertedBackground={true} ariaLabel="Email signup section" /> @@ -298,45 +211,21 @@ export default function HomePage() { animationType="smooth" faqs={[ { - id: "faq-1", - title: "Are all perfumes authentic?", - content: "Yes, 100% guaranteed authentic. All our fragrances are sourced directly from official distributors and luxury brand partners. We guarantee authenticity on every product or your money back.", - }, + id: "faq-1", title: "Are all perfumes authentic?", content: "Yes, 100% guaranteed authentic. All our fragrances are sourced directly from official distributors and luxury brand partners. We guarantee authenticity on every product or your money back."}, { - id: "faq-2", - title: "What is your return policy?", - content: "We offer a 30-day money-back guarantee on all unopened products. If you're not completely satisfied, simply return the item in original condition for a full refund, no questions asked.", - }, + id: "faq-2", title: "What is your return policy?", content: "We offer a 30-day money-back guarantee on all unopened products. If you're not completely satisfied, simply return the item in original condition for a full refund, no questions asked."}, { - id: "faq-3", - title: "How long does shipping take?", - content: "Standard shipping typically takes 5-7 business days within the US. Express shipping (2-3 days) and international shipping are available. All orders are carefully packaged to ensure safe delivery.", - }, + id: "faq-3", title: "How long does shipping take?", content: "Standard shipping typically takes 5-7 business days within the US. Express shipping (2-3 days) and international shipping are available. All orders are carefully packaged to ensure safe delivery."}, { - id: "faq-4", - title: "Do you offer international shipping?", - content: "Yes! We ship to over 150 countries worldwide. International orders may take 10-21 business days depending on destination. Customs duties may apply based on your country's regulations.", - }, + id: "faq-4", title: "Do you offer international shipping?", content: "Yes! We ship to over 150 countries worldwide. International orders may take 10-21 business days depending on destination. Customs duties may apply based on your country's regulations."}, { - id: "faq-5", - title: "How do I know which fragrance to choose?", - content: "We provide detailed fragrance profiles including scent notes, intensity levels, and occasions. Our customer reviews are helpful, and our team is available via chat to help you find your perfect scent.", - }, + id: "faq-5", title: "How do I know which fragrance to choose?", content: "We provide detailed fragrance profiles including scent notes, intensity levels, and occasions. Our customer reviews are helpful, and our team is available via chat to help you find your perfect scent."}, { - id: "faq-6", - title: "What payment methods do you accept?", - content: "We accept all major credit cards (Visa, Mastercard, American Express), PayPal, Apple Pay, Google Pay, and secure bank transfers. All transactions are encrypted and 100% secure.", - }, + id: "faq-6", title: "What payment methods do you accept?", content: "We accept all major credit cards (Visa, Mastercard, American Express), PayPal, Apple Pay, Google Pay, and secure bank transfers. All transactions are encrypted and 100% secure."}, { - id: "faq-7", - title: "Can I track my order?", - content: "Absolutely! You'll receive a tracking number via email as soon as your order ships. You can track your package in real-time on our website or through the carrier's site.", - }, + id: "faq-7", title: "Can I track my order?", content: "Absolutely! You'll receive a tracking number via email as soon as your order ships. You can track your package in real-time on our website or through the carrier's site."}, { - id: "faq-8", - title: "Do you have a loyalty program?", - content: "Yes! Our VIP membership rewards customers with points on every purchase, exclusive early access to new collections, birthday discounts, and special promotions.", - }, + id: "faq-8", title: "Do you have a loyalty program?", content: "Yes! Our VIP membership rewards customers with points on every purchase, exclusive early access to new collections, birthday discounts, and special promotions."}, ]} ariaLabel="Frequently asked questions section" /> @@ -346,8 +235,7 @@ export default function HomePage() {