Update src/app/blog/page.tsx

This commit is contained in:
2026-03-12 13:41:58 +00:00
parent 0ea9f86295
commit 2b952680a2

View File

@@ -12,6 +12,7 @@ import { BookMarked } from "lucide-react";
export default function BlogPage() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "Products", id: "/products" },
{ name: "Reviews", id: "/reviews" },
{ name: "Guides", id: "/guides" },
{ name: "Blog", id: "/blog" },
@@ -71,7 +72,7 @@ export default function BlogPage() {
brandName="Aura Hub Finds"
navItems={navItems}
button={{
text: "Shop Now", href: "/reviews"}}
text: "Shop Now", href: "/products"}}
/>
</div>
@@ -163,4 +164,4 @@ export default function BlogPage() {
</div>
</ThemeProvider>
);
}
}