From cfb8c20a729fc3a1f43a064b8951caf466b7517a Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 13:40:23 +0000 Subject: [PATCH] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 128 +++++++++++------------------------------- 1 file changed, 32 insertions(+), 96 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index dc19ae6..b516bf3 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -11,17 +11,17 @@ import { BookMarked } from "lucide-react"; export default function BlogPage() { 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 BlogPage() { ], }, { - title: "Categories", - items: [ + title: "Categories", items: [ { label: "Skincare", href: "#" }, { label: "Makeup", href: "#" }, { label: "Lip Care", href: "#" }, @@ -38,17 +37,15 @@ export default function BlogPage() { ], }, { - 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 BlogPage() { brandName="Aura Hub Finds" navItems={navItems} button={{ - text: "Shop Now", - href: "/", - }} + text: "Shop Now", href: "/products"}} /> @@ -85,49 +80,17 @@ export default function BlogPage() { @@ -152,35 +113,17 @@ export default function BlogPage() { @@ -203,18 +144,13 @@ export default function BlogPage() { text="Found a product we should review? Have a beauty question for our experts? Reach out and let's connect with the 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: "#"}, ]} /> @@ -228,4 +164,4 @@ export default function BlogPage() { ); -} \ No newline at end of file +}