Merge version_2 into main #9

Merged
bender merged 4 commits from version_2 into main 2026-02-24 07:05:06 +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' },