Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9d1ad75fd3 | |||
| 4bd2067ad8 | |||
| d8e80468fd | |||
| 41679727db | |||
| 9afd9bb3a5 | |||
| 6de47f6c9f | |||
| 96c98234ee | |||
| ba17fd3b58 | |||
| a86552f522 | |||
| e3801cd433 |
@@ -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' },
|
||||
|
||||
@@ -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: '#' }] },
|
||||
]}
|
||||
|
||||
@@ -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' },
|
||||
|
||||
@@ -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' },
|
||||
|
||||
Reference in New Issue
Block a user