10 Commits

Author SHA1 Message Date
9d1ad75fd3 Update src/app/shop/page.tsx 2026-02-24 07:05:02 +00:00
4bd2067ad8 Update src/app/shop/[id]/page.tsx 2026-02-24 07:05:01 +00:00
d8e80468fd Update src/app/page.tsx 2026-02-24 07:05:00 +00:00
41679727db Update src/app/blog/page.tsx 2026-02-24 07:04:59 +00:00
9afd9bb3a5 Merge version_1 into main
Merge version_1 into main
2026-02-23 12:30:55 +00:00
6de47f6c9f Merge version_1 into main
Merge version_1 into main
2026-02-23 12:30:08 +00:00
96c98234ee Merge version_1 into main
Merge version_1 into main
2026-02-23 12:27:00 +00:00
ba17fd3b58 Merge version_1 into main
Merge version_1 into main
2026-02-23 12:23:48 +00:00
a86552f522 Merge version_1 into main
Merge version_1 into main
2026-02-23 12:21:02 +00:00
e3801cd433 Merge version_1 into main
Merge version_1 into main
2026-02-23 12:18:32 +00:00
4 changed files with 8 additions and 4 deletions

View File

@@ -18,6 +18,7 @@ export default function BlogPage() {
const navItems = [
{ name: 'Home', id: '/' },
{ name: 'Products', id: '/shop' },
{ name: 'About', id: '/#about' },
{ name: 'Features', id: '/#features' },
{ name: 'Testimonials', id: '/#testimonials' },

View File

@@ -17,6 +17,7 @@ import FooterMedia from '@/components/sections/footer/FooterMedia';
export default function LandingPage() {
const navItems = [
{ name: 'Home', id: '/' },
{ name: 'Products', id: '/shop' },
{ name: 'About', id: '/#about' },
{ name: 'Features', id: '/#features' },
{ name: 'Testimonials', id: '/#testimonials' },
@@ -41,7 +42,7 @@ export default function LandingPage() {
<NavbarLayoutFloatingOverlay
brandName="Find Me"
navItems={navItems}
button={{ text: 'Explore Now', href: '#shop' }}
button={{ text: 'Explore Now', href: '/shop' }}
className="bg-card/80 backdrop-blur-md"
buttonClassName="bg-primary-cta text-primary-cta-text"
buttonTextClassName="font-semibold"
@@ -56,7 +57,7 @@ export default function LandingPage() {
tagIcon={Sparkles}
tagAnimation="slide-up"
buttons={[
{ text: 'Shop Now', href: '#shop' },
{ text: 'Shop Now', href: '/shop' },
{ text: 'Our Story', href: '#about' },
]}
buttonAnimation="slide-up"
@@ -85,7 +86,7 @@ export default function LandingPage() {
tag="Our Philosophy"
tagIcon={Award}
tagAnimation="slide-up"
buttons={[{ text: 'Learn More', href: '#' }]}
buttons={[{ text: 'Learn More', href: '#about' }]}
buttonAnimation="slide-up"
imageSrc="https://img.b2bpic.net/free-photo/high-angle-ecological-zero-waster-concept_23-2148591681.jpg"
imageAlt="Close up of a perfumer's tools and ingredients, glass bottles and delicate flowers"
@@ -246,7 +247,7 @@ export default function LandingPage() {
imageSrc="https://img.b2bpic.net/free-vector/pink-silk-background_1048-401.jpg?_wi=1"
imageAlt="Abstract luxury texture background with soft gradients"
columns={[
{ title: 'Shop', items: [{ label: 'New Arrivals', href: '#shop' }, { label: 'Best Sellers', href: '#shop' }, { label: 'Discovery Sets', href: '#shop' }] },
{ title: 'Shop', items: [{ label: 'New Arrivals', href: '/shop' }, { label: 'Best Sellers', href: '/shop' }, { label: 'Discovery Sets', href: '/shop' }] },
{ title: 'Company', items: [{ label: 'About Us', href: '#about' }, { label: 'Our Promise', href: '#features' }, { label: 'Contact', href: '#contact' }] },
{ title: 'Support', items: [{ label: 'FAQ', href: '#faq' }, { label: 'Shipping', href: '#' }, { label: 'Returns', href: '#' }] },
]}

View File

@@ -17,6 +17,7 @@ interface ProductPageProps {
const navItems = [
{ name: 'Home', id: '/' },
{ name: 'Products', id: '/shop' },
{ name: 'About', id: '/#about' },
{ name: 'Features', id: '/#features' },
{ name: 'Testimonials', id: '/#testimonials' },

View File

@@ -9,6 +9,7 @@ import { useProductCatalog } from "@/hooks/useProductCatalog";
const navItems = [
{ name: 'Home', id: '/' },
{ name: 'Products', id: '/shop' },
{ name: 'About', id: '/#about' },
{ name: 'Features', id: '/#features' },
{ name: 'Testimonials', id: '/#testimonials' },