Update src/app/blog/page.tsx
This commit is contained in:
@@ -28,16 +28,14 @@ export default function BlogPage() {
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Products", id: "products" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "About", id: "/#about" },
|
||||
{ name: "Products", id: "/#products" },
|
||||
{ name: "Testimonials", id: "/#testimonials" },
|
||||
{ name: "Contact", id: "/#contact" },
|
||||
]}
|
||||
button={{ text: "Order Now", href: "contact" }}
|
||||
button={{ text: "Order Now", href: "/#contact" }}
|
||||
brandName="Slavko's Bakery"
|
||||
className="py-4 px-6 md:px-8"
|
||||
buttonClassName="bg-primary-cta text-primary-cta-text rounded-soft px-4 py-2 text-sm font-semibold transition-all duration-300 ease-out hover:scale-105"
|
||||
buttonTextClassName="font-medium"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -62,11 +60,11 @@ export default function BlogPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="https://img.b2bpic.net/free-photo/cooked-fresh-breads-furnace_140725-2066.jpg?_wi=2"
|
||||
imageSrc="https://img.b2bpic.net/free-photo/cooked-fresh-breads-furnace_140725-2066.jpg"
|
||||
imageAlt="A warm bakery kitchen with fresh bread in the oven"
|
||||
columns={[
|
||||
{ title: "Bakery", items: [{ label: "Our Story", href: "about" }, { label: "Menu", href: "products" }, { label: "Special Orders", href: "contact" }] },
|
||||
{ title: "Connect", items: [{ label: "Contact Us", href: "contact" }, { label: "Instagram", href: "https://instagram.com/slavkosbakery" }, { label: "Facebook", href: "https://facebook.com/slavkosbakery" }] },
|
||||
{ title: "Bakery", items: [{ label: "Our Story", href: "/#about" }, { label: "Menu", href: "/#products" }, { label: "Special Orders", href: "/#contact" }] },
|
||||
{ title: "Connect", items: [{ label: "Contact Us", href: "/#contact" }, { label: "Instagram", href: "https://instagram.com/slavkosbakery" }, { label: "Facebook", href: "https://facebook.com/slavkosbakery" }] },
|
||||
{ title: "Legal", items: [{ label: "Privacy Policy", href: "/privacy" }, { label: "Terms of Service", href: "/terms" }] }
|
||||
]}
|
||||
logoText="Slavko's Bakery"
|
||||
|
||||
Reference in New Issue
Block a user