From 10eb292c6851bd85f4c36c22c4902ca36e991dbe Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Thu, 2 Jul 2026 22:42:16 +0000 Subject: [PATCH 1/4] Bob AI: fix build error in src/pages/CollectionsPage.tsx --- src/pages/CollectionsPage.tsx | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/src/pages/CollectionsPage.tsx b/src/pages/CollectionsPage.tsx index b4d96f6..ee07962 100644 --- a/src/pages/CollectionsPage.tsx +++ b/src/pages/CollectionsPage.tsx @@ -23,6 +23,31 @@ export default function CollectionsPage() { description: "Raw, botanical, grounded elements.", imageSrc: "http://img.b2bpic.net/free-photo/elegant-vegan-alcohol-arrangement_23-2149337694.jpg", }, + { + title: "Ocean Breeze", + description: "Fresh, aquatic, and invigorating.", + imageSrc: "http://img.b2bpic.net/free-photo/ecofriendly-beauty-product_23-2150669153.jpg", + }, + { + title: "Desert Bloom", + description: "Warm, spicy, and floral notes.", + imageSrc: "http://img.b2bpic.net/free-photo/elegant-vegan-alcohol-arrangement_23-2149337694.jpg", + }, + { + title: "Forest Canopy", + description: "Woody, green, and earthy scents.", + imageSrc: "http://img.b2bpic.net/free-photo/ecofriendly-beauty-product_23-2150669153.jpg", + }, + { + title: "Citrus Grove", + description: "Bright, zesty, and uplifting.", + imageSrc: "http://img.b2bpic.net/free-photo/elegant-vegan-alcohol-arrangement_23-2149337694.jpg", + }, + { + title: "Velvet Rose", + description: "Rich, romantic, and classic.", + imageSrc: "http://img.b2bpic.net/free-photo/ecofriendly-beauty-product_23-2150669153.jpg", + }, ]} textAnimation="fade-blur" /> -- 2.49.1 From 2369b7f462018f026dd9ddb57731bc9cf9184cec Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 2 Jul 2026 22:42:23 +0000 Subject: [PATCH 2/4] Update src/pages/CollectionsPage.tsx --- src/pages/CollectionsPage.tsx | 52 ++++++----------------------------- 1 file changed, 9 insertions(+), 43 deletions(-) diff --git a/src/pages/CollectionsPage.tsx b/src/pages/CollectionsPage.tsx index ee07962..46c06a8 100644 --- a/src/pages/CollectionsPage.tsx +++ b/src/pages/CollectionsPage.tsx @@ -13,41 +13,13 @@ export default function CollectionsPage() { title="The Archive" description="A deep dive into our seasonal drops." items={[ - { - title: "Midnight Series", - description: "Inspired by urban night skies.", - imageSrc: "http://img.b2bpic.net/free-photo/ecofriendly-beauty-product_23-2150669153.jpg", - }, - { - title: "Earth & Skin", - description: "Raw, botanical, grounded elements.", - imageSrc: "http://img.b2bpic.net/free-photo/elegant-vegan-alcohol-arrangement_23-2149337694.jpg", - }, - { - title: "Ocean Breeze", - description: "Fresh, aquatic, and invigorating.", - imageSrc: "http://img.b2bpic.net/free-photo/ecofriendly-beauty-product_23-2150669153.jpg", - }, - { - title: "Desert Bloom", - description: "Warm, spicy, and floral notes.", - imageSrc: "http://img.b2bpic.net/free-photo/elegant-vegan-alcohol-arrangement_23-2149337694.jpg", - }, - { - title: "Forest Canopy", - description: "Woody, green, and earthy scents.", - imageSrc: "http://img.b2bpic.net/free-photo/ecofriendly-beauty-product_23-2150669153.jpg", - }, - { - title: "Citrus Grove", - description: "Bright, zesty, and uplifting.", - imageSrc: "http://img.b2bpic.net/free-photo/elegant-vegan-alcohol-arrangement_23-2149337694.jpg", - }, - { - title: "Velvet Rose", - description: "Rich, romantic, and classic.", - imageSrc: "http://img.b2bpic.net/free-photo/ecofriendly-beauty-product_23-2150669153.jpg", - }, + { title: "Midnight Series", description: "Inspired by urban night skies.", imageSrc: "http://img.b2bpic.net/free-photo/ecofriendly-beauty-product_23-2150669153.jpg" }, + { title: "Earth & Skin", description: "Raw, botanical, grounded elements.", imageSrc: "http://img.b2bpic.net/free-photo/elegant-vegan-alcohol-arrangement_23-2149337694.jpg" }, + { title: "Seasonal One", description: "Crisp notes for spring.", imageSrc: "http://img.b2bpic.net/free-photo/everyday-bath-utensils-dark-marble-background_58702-17689.jpg" }, + { title: "Seasonal Two", description: "Deep warmth for autumn.", imageSrc: "http://img.b2bpic.net/free-photo/natural-argan-oil-composition_23-2149016630.jpg" }, + { title: "Archive Rare", description: "Limited edition classics.", imageSrc: "http://img.b2bpic.net/free-photo/man-s-accessories-wooden-surface_8353-10515.jpg" }, + { title: "Botanical Mist", description: "Light and airy scent.", imageSrc: "http://img.b2bpic.net/free-photo/monochrome-beauty-product-skincare_23-2151307236.jpg" }, + { title: "Midnight Musk", description: "Deep and mysterious notes.", imageSrc: "http://img.b2bpic.net/free-photo/set-feathers-can_23-2148073845.jpg" } ]} textAnimation="fade-blur" /> @@ -62,15 +34,9 @@ export default function CollectionsPage() { description="How we turn emotion into physical essence." items={[ { - icon: Droplet, - title: "Distillation", - description: "Small-batch artisan extraction.", - }, + icon: "Droplet", title: "Distillation", description: "Small-batch artisan extraction."}, { - icon: Layers, - title: "Aging", - description: "Matured in darkness for perfect balance.", - }, + icon: "Layers", title: "Aging", description: "Matured in darkness for perfect balance."}, ]} imageSrc="http://img.b2bpic.net/free-photo/luxurious-lifestyle-concept-table_23-2148229220.jpg" textAnimation="fade-blur" -- 2.49.1 From 43d40f9d30e324104f9c2817711c6c89022e9a77 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 2 Jul 2026 22:42:24 +0000 Subject: [PATCH 3/4] Update src/pages/ContactPage.tsx --- src/pages/ContactPage.tsx | 25 +++++++++---------------- 1 file changed, 9 insertions(+), 16 deletions(-) diff --git a/src/pages/ContactPage.tsx b/src/pages/ContactPage.tsx index f75d71d..f2fd241 100644 --- a/src/pages/ContactPage.tsx +++ b/src/pages/ContactPage.tsx @@ -11,13 +11,9 @@ export default function ContactPage() { tag="Inquiries" text="Get in touch for partnerships, press, or personal scent styling." primaryButton={{ - text: "Email Us", - href: "mailto:hello@sanarissavant.com", - }} + text: "Email Us", href: "mailto:hello@sanarissavant.com"}} secondaryButton={{ - text: "Follow Us", - href: "#", - }} + text: "Follow Us", href: "#"}} textAnimation="fade-blur" /> @@ -30,16 +26,13 @@ export default function ContactPage() { title="Visit the Atelier" description="Private appointments are available by request." items={[ - { - title: "Studio Visit", - description: "Book a private scent testing.", - imageSrc: "http://img.b2bpic.net/free-photo/elegant-vegan-alcohol-arrangement_23-2149337695.jpg", - }, - { - title: "Virtual Sessions", - description: "Global one-on-one styling.", - imageSrc: "http://img.b2bpic.net/free-photo/pink-orchid-girly-arrangement_23-2148229212.jpg", - }, + { title: "Studio Visit", description: "Book a private scent testing.", imageSrc: "http://img.b2bpic.net/free-photo/elegant-vegan-alcohol-arrangement_23-2149337695.jpg" }, + { title: "Virtual Sessions", description: "Global one-on-one styling.", imageSrc: "http://img.b2bpic.net/free-photo/pink-orchid-girly-arrangement_23-2148229212.jpg" }, + { title: "Private Testing", description: "Deep dive into scents.", imageSrc: "http://img.b2bpic.net/free-photo/everyday-bath-utensils-dark-marble-background_58702-17689.jpg" }, + { title: "Corporate Events", description: "Scent experiences for teams.", imageSrc: "http://img.b2bpic.net/free-photo/natural-argan-oil-composition_23-2149016630.jpg" }, + { title: "Press Inquiry", description: "Media and styling access.", imageSrc: "http://img.b2bpic.net/free-photo/man-s-accessories-wooden-surface_8353-10515.jpg" }, + { title: "Founder Tour", description: "Walk through the lab.", imageSrc: "http://img.b2bpic.net/free-photo/monochrome-beauty-product-skincare_23-2151307236.jpg" }, + { title: "Scent Concierge", description: "Bespoke styling services.", imageSrc: "http://img.b2bpic.net/free-photo/set-feathers-can_23-2148073845.jpg" } ]} textAnimation="fade-blur" /> -- 2.49.1 From 634863757e42908aac34be2439e8c6f63458663b Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 2 Jul 2026 22:42:24 +0000 Subject: [PATCH 4/4] Update src/pages/ShopPage.tsx --- src/pages/ShopPage.tsx | 25 +++++++++---------------- 1 file changed, 9 insertions(+), 16 deletions(-) diff --git a/src/pages/ShopPage.tsx b/src/pages/ShopPage.tsx index 06aed92..08b7d3d 100644 --- a/src/pages/ShopPage.tsx +++ b/src/pages/ShopPage.tsx @@ -12,16 +12,13 @@ export default function ShopPage() { title="Complete Collection" description="Explore our full range of curated luxury scents." items={[ - { - title: "Discovery Set", - description: "Sample all our notes.", - imageSrc: "http://img.b2bpic.net/free-photo/perfume-bottle-pink-product-backdrop_53876-147765.jpg", - }, - { - title: "Signature Noir", - description: "The quintessential evening scent.", - imageSrc: "http://img.b2bpic.net/free-photo/close-up-perfume-floating-water_23-2150963113.jpg", - }, + { title: "Discovery Set", description: "Sample all our notes.", imageSrc: "http://img.b2bpic.net/free-photo/perfume-bottle-pink-product-backdrop_53876-147765.jpg" }, + { title: "Signature Noir", description: "The quintessential evening scent.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-perfume-floating-water_23-2150963113.jpg" }, + { title: "Amber Woods", description: "Rich, warm, and deep notes.", imageSrc: "http://img.b2bpic.net/free-photo/everyday-bath-utensils-dark-marble-background_58702-17689.jpg" }, + { title: "Floral Musk", description: "Delicate yet commanding scent.", imageSrc: "http://img.b2bpic.net/free-photo/natural-argan-oil-composition_23-2149016630.jpg" }, + { title: "Citrus Spark", description: "Bright, uplifting, fresh notes.", imageSrc: "http://img.b2bpic.net/free-photo/man-s-accessories-wooden-surface_8353-10515.jpg" }, + { title: "Vanilla Silk", description: "Soft, sweet, dreamy layering.", imageSrc: "http://img.b2bpic.net/free-photo/monochrome-beauty-product-skincare_23-2151307236.jpg" }, + { title: "Ocean Mist", description: "Refreshing breeze and salt.", imageSrc: "http://img.b2bpic.net/free-photo/set-feathers-can_23-2148073845.jpg" } ]} textAnimation="fade-blur" /> @@ -34,13 +31,9 @@ export default function ShopPage() { tag="Support" text="Need help finding your signature scent?" primaryButton={{ - text: "Consultation", - href: "/contact", - }} + text: "Consultation", href: "/contact"}} secondaryButton={{ - text: "FAQs", - href: "/contact", - }} + text: "FAQs", href: "/contact"}} textAnimation="fade-blur" /> -- 2.49.1