Update src/app/blog/page.tsx
This commit is contained in:
@@ -34,14 +34,9 @@ export default function BlogPage() {
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Features", id: "features" },
|
||||
{ name: "Products", id: "products" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "FAQ", id: "faq" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="Biorogo"
|
||||
button={{ text: "Shop Now", href: "#products" }}
|
||||
button={{ text: "Shop Now", href: "/shop" }}
|
||||
className="py-4 px-6 md:px-8 lg:px-12"
|
||||
navItemClassName="text-foreground hover:text-primary-cta"
|
||||
buttonClassName=""
|
||||
@@ -73,22 +68,22 @@ export default function BlogPage() {
|
||||
columns={[
|
||||
{
|
||||
title: "Shop", items: [
|
||||
{ label: "All Cups", href: "#products" },
|
||||
{ label: "Ceramic", href: "#products" },
|
||||
{ label: "Glassware", href: "#products" },
|
||||
{ label: "Travel Mugs", href: "#products" },
|
||||
{ label: "All Cups", href: "/#products" },
|
||||
{ label: "Ceramic", href: "/#products" },
|
||||
{ label: "Glassware", href: "/#products" },
|
||||
{ label: "Travel Mugs", href: "/#products" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "#features" },
|
||||
{ label: "Testimonials", href: "#testimonials" },
|
||||
{ label: "FAQ", href: "#faq" },
|
||||
{ label: "About Us", href: "/#features" },
|
||||
{ label: "Testimonials", href: "/#testimonials" },
|
||||
{ label: "FAQ", href: "/#faq" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support", items: [
|
||||
{ label: "Contact Us", href: "#contact" },
|
||||
{ label: "Contact Us", href: "/#contact" },
|
||||
{ label: "Shipping", href: "/shipping" },
|
||||
{ label: "Returns", href: "/returns" },
|
||||
{ label: "Sitemap", href: "/sitemap" },
|
||||
@@ -98,7 +93,6 @@ export default function BlogPage() {
|
||||
copyrightText="© 2024 Biorogo. All rights reserved."
|
||||
onPrivacyClick={() => console.log('Privacy policy clicked')}
|
||||
ariaLabel="Site footer for Biorogo"
|
||||
useInvertedBackground={false}
|
||||
className="py-16 md:py-20"
|
||||
cardClassName="bg-card rounded-t-3xl shadow-lg border-t border-l border-r border-accent/20"
|
||||
logoTextClassName="text-foreground text-3xl font-extrabold"
|
||||
|
||||
Reference in New Issue
Block a user