diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx
index 5ea81a0..b94eb0a 100644
--- a/src/app/blog/page.tsx
+++ b/src/app/blog/page.tsx
@@ -32,15 +32,15 @@ export default function BlogPage() {
@@ -70,15 +70,15 @@ export default function BlogPage() {
columns={[
{
title: "Bakery", items: [
- { label: "Our Story", href: "#about" },
- { label: "Products", href: "#products" },
- { label: "Process", href: "#process" },
+ { label: "Our Story", href: "/#about" },
+ { label: "Products", href: "/#products" },
+ { label: "Process", href: "/#process" },
],
},
{
title: "Support", items: [
- { label: "FAQ", href: "#faq" },
- { label: "Contact Us", href: "#contact" },
+ { label: "FAQ", href: "/#faq" },
+ { label: "Contact Us", href: "/#contact" },
],
},
{
@@ -89,7 +89,6 @@ export default function BlogPage() {
},
]}
copyrightText="© 2024 Смачна Випічка. All rights reserved."
- useInvertedBackground={false}
className="py-10 bg-background-accent text-primary-cta-text"
logoTextClassName="font-extrabold text-3xl"
columnTitleClassName="font-bold text-lg"
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 408997a..578de77 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -54,7 +54,7 @@ export default function LandingPage() {
{ text: "Learn More", href: "#about" },
]}
background={{ variant: "plain" }}
- imageSrc="https://img.b2bpic.net/free-photo/vertical-view-whole-black-bread-brown-towel-potteries-dark-colors-surface_179666-24652.jpg?_wi=1"
+ imageSrc="https://img.b2bpic.net/free-photo/vertical-view-whole-black-bread-brown-towel-potteries-dark-colors-surface_179666-24652.jpg"
imageAlt="Assortment of fresh Ukrainian breads and pastries"
className="min-h-[75svh] md:min-h-[85svh] lg:min-h-[90svh]"
cardWrapperClassName="shadow-xl rounded-soft border border-gray-200/50"
@@ -104,7 +104,7 @@ export default function LandingPage() {
{
id: "honey-cake", name: "Classic Medovyk", price: "$35.00", variant: "Layers of Honey Goodness", imageSrc: "https://img.b2bpic.net/free-photo/piece-homemade-honey-cake-with-dried-flowers-honey-spoon-wool-tablecloth_114579-17241.jpg", imageAlt: "A slice of layered Ukrainian honey cake (Medovyk)"},
{
- id: "kolach", name: "Braided Kolach", price: "$12.00", variant: "Festive & Flavorful", imageSrc: "https://img.b2bpic.net/free-photo/vertical-view-whole-black-bread-brown-towel-potteries-dark-colors-surface_179666-24652.jpg?_wi=2", imageAlt: "A beautifully braided Ukrainian Kolach bread"},
+ id: "kolach", name: "Braided Kolach", price: "$12.00", variant: "Festive & Flavorful", imageSrc: "https://img.b2bpic.net/free-photo/vertical-view-whole-black-bread-brown-towel-potteries-dark-colors-surface_179666-24652.jpg", imageAlt: "A beautifully braided Ukrainian Kolach bread"},
]}
animationType="slide-up"
textboxLayout="default"
diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx
index b14e084..3a0e9cc 100644
--- a/src/app/shop/[id]/page.tsx
+++ b/src/app/shop/[id]/page.tsx
@@ -1,4 +1,4 @@
-use client";
+"use client";
import { Suspense, use, useCallback } from "react";
import { useRouter } from "next/navigation";
@@ -173,12 +173,11 @@ function ProductPageContent({ params }: ProductPageProps) {