diff --git a/src/app/reviews/page.tsx b/src/app/reviews/page.tsx index bdba96e..131521c 100644 --- a/src/app/reviews/page.tsx +++ b/src/app/reviews/page.tsx @@ -12,6 +12,7 @@ import { Sparkles } from "lucide-react"; export default function ReviewsPage() { const navItems = [ { name: "Home", id: "/" }, + { name: "Products", id: "/products" }, { name: "Reviews", id: "/reviews" }, { name: "Guides", id: "/guides" }, { name: "Blog", id: "/blog" }, @@ -69,7 +70,7 @@ export default function ReviewsPage() {
@@ -89,7 +90,7 @@ export default function ReviewsPage() { ]} avatarText="Tested by 10,000+ beauty enthusiasts" buttons={[ - { text: "Shop Top Picks", href: "#products" }, + { text: "Shop Top Picks", href: "/products" }, { text: "Back to Home", href: "/" }, ]} buttonAnimation="slide-up" @@ -145,4 +146,4 @@ export default function ReviewsPage() { ); -} \ No newline at end of file +}