diff --git a/src/app/guides/page.tsx b/src/app/guides/page.tsx index a5656a9..23bba60 100644 --- a/src/app/guides/page.tsx +++ b/src/app/guides/page.tsx @@ -11,17 +11,17 @@ import { BookOpen } from "lucide-react"; export default function GuidesPage() { const navItems = [ - { name: "Home", id: "home" }, - { name: "Reviews", id: "reviews" }, - { name: "Guides", id: "guides" }, - { name: "Blog", id: "blog" }, - { name: "Contact", id: "contact" }, + { name: "Home", id: "/" }, + { name: "Products", id: "/products" }, + { name: "Reviews", id: "/reviews" }, + { name: "Guides", id: "/guides" }, + { name: "Blog", id: "/blog" }, + { name: "Contact", id: "/contact" }, ]; const footerColumns = [ { - title: "Discover", - items: [ + title: "Discover", items: [ { label: "Product Reviews", href: "/reviews" }, { label: "Beauty Guides", href: "/guides" }, { label: "Blog Articles", href: "/blog" }, @@ -29,8 +29,7 @@ export default function GuidesPage() { ], }, { - title: "Categories", - items: [ + title: "Categories", items: [ { label: "Skincare", href: "#" }, { label: "Makeup", href: "#" }, { label: "Lip Care", href: "#" }, @@ -38,17 +37,15 @@ export default function GuidesPage() { ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "#" }, - { label: "Contact", href: "/" }, + { label: "Contact", href: "/contact" }, { label: "Advertise", href: "#" }, { label: "Affiliate Program", href: "#" }, ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Disclosure", href: "#" }, @@ -75,9 +72,7 @@ export default function GuidesPage() { brandName="Aura Hub Finds" navItems={navItems} button={{ - text: "Shop Now", - href: "/", - }} + text: "Shop Now", href: "/products"}} /> @@ -86,25 +81,13 @@ export default function GuidesPage() { features={[ { id: 1, - title: "Skincare Essentials", - description: "Build a personalized skincare routine with our expert-recommended products and step-by-step application guide.", - imageSrc: "http://img.b2bpic.net/free-photo/woman-doing-self-care-treatment-home_23-2148974292.jpg?_wi=2", - imageAlt: "skincare routine step by step infographic", - }, + title: "Skincare Essentials", description: "Build a personalized skincare routine with our expert-recommended products and step-by-step application guide.", imageSrc: "http://img.b2bpic.net/free-photo/woman-doing-self-care-treatment-home_23-2148974292.jpg?_wi=2", imageAlt: "skincare routine step by step infographic"}, { id: 2, - title: "Makeup Mastery", - description: "Learn professional makeup techniques from beginner to advanced with our detailed tutorials and product recommendations.", - imageSrc: "http://img.b2bpic.net/free-photo/professional-cosmetologist-working-client_23-2148398515.jpg?_wi=2", - imageAlt: "makeup tutorial application brushes technique", - }, + title: "Makeup Mastery", description: "Learn professional makeup techniques from beginner to advanced with our detailed tutorials and product recommendations.", imageSrc: "http://img.b2bpic.net/free-photo/professional-cosmetologist-working-client_23-2148398515.jpg?_wi=2", imageAlt: "makeup tutorial application brushes technique"}, { id: 3, - title: "Lip Care Secrets", - description: "Discover the best lip care products and routines to keep your lips healthy, soft, and beautiful year-round.", - imageSrc: "http://img.b2bpic.net/free-photo/beauty-concept-close-up-portrait-attractive-caucasian-girl-with-beauty-natural-skin-isolated-pink-background-with-copy-space_1258-1110.jpg?_wi=2", - imageAlt: "lip care treatment beauty routine close-up", - }, + title: "Lip Care Secrets", description: "Discover the best lip care products and routines to keep your lips healthy, soft, and beautiful year-round.", imageSrc: "http://img.b2bpic.net/free-photo/beauty-concept-close-up-portrait-attractive-caucasian-girl-with-beauty-natural-skin-isolated-pink-background-with-copy-space_1258-1110.jpg?_wi=2", imageAlt: "lip care treatment beauty routine close-up"}, ]} title="Beauty Guides & Tutorials" description="Step-by-step guides to perfect your skincare routine, master makeup techniques, and discover affordable beauty solutions." @@ -115,9 +98,7 @@ export default function GuidesPage() { useInvertedBackground={false} buttons={[ { - text: "View All Guides", - href: "/guides", - }, + text: "View All Guides", href: "/guides"}, ]} buttonAnimation="slide-up" /> @@ -127,35 +108,17 @@ export default function GuidesPage() { @@ -178,18 +139,13 @@ export default function GuidesPage() { text="Ready to master your beauty routine? Get personalized guide recommendations, submit beauty questions, or share your feedback with our community." animationType="entrance-slide" background={{ - variant: "plain", - }} + variant: "plain"}} useInvertedBackground={false} buttons={[ { - text: "Get in Touch", - href: "/", - }, + text: "Get in Touch", href: "/contact"}, { - text: "Subscribe for Updates", - href: "/", - }, + text: "Subscribe for Updates", href: "#"}, ]} /> @@ -203,4 +159,4 @@ export default function GuidesPage() { ); -} \ No newline at end of file +}