diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx
index 77ec080..5adf7ae 100644
--- a/src/app/blog/page.tsx
+++ b/src/app/blog/page.tsx
@@ -26,42 +26,48 @@ export default function BlogPage() {
headingFontWeight="bold"
>
-
+
+
+
-
- {isLoading ? (
-
- ) : (
-
- )}
-
+
+
+ {isLoading ? (
+
+ ) : (
+
+ )}
+
+
-
+
);
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 8774653..a4df01c 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -43,8 +43,8 @@ export default function LandingPage() {
imageSrc="https://img.b2bpic.net/free-photo/close-up-image-man-holds-coffee-with-heart-foam-top-view_613910-8884.jpg"
imageAlt="Close-up of a coffee cup with latte art on a wooden table in a cozy coffee shop."
tag="Welcome to Bean Haven"
- tagAnimation="background-highlight"
- buttonAnimation="background-highlight"
+ tagAnimation="slide-up"
+ buttonAnimation="slide-up"
textBoxClassName="max-w-3xl"
titleClassName="text-balance"
descriptionClassName="max-w-2xl text-balance"
@@ -64,7 +64,7 @@ export default function LandingPage() {
imageSrc="https://img.b2bpic.net/free-photo/smiling-asian-girl-barista-cafe-staff-pouring-steamed-milk-coffee-prepare-cappuccino-with-latte_1258-134426.jpg"
imageAlt="A friendly barista preparing a latte behind a coffee machine."
useInvertedBackground={false}
- tagAnimation="background-highlight"
+ tagAnimation="slide-up"
mediaAnimation="opacity"
className="bg-card"
/>
@@ -106,7 +106,7 @@ export default function LandingPage() {
diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx
index 8baccc5..5b03abd 100644
--- a/src/app/shop/[id]/page.tsx
+++ b/src/app/shop/[id]/page.tsx
@@ -74,6 +74,19 @@ function ProductPageContent({ params }: ProductPageProps) {
await checkout(getCheckoutItems(), { successUrl: currentUrl.toString() });
}, [cartItems, checkout, getCheckoutItems]);
+ const navItems = [
+ { name: "Home", id: "/" },
+ { name: "About", id: "/#about" },
+ { name: "Menu", id: "/#product" },
+ { name: "Testimonials", id: "/#testimonials" },
+ { name: "Contact", id: "/#contact" },
+ ];
+
+ const footerColumns = [
+ { items: [{ label: "Home", href: "/" }, { label: "Menu", href: "/#product" }, { label: "About Us", href: "/#about" }] },
+ { items: [{ label: "Contact", href: "/#contact" }, { label: "Blog", href: "/blog" }, { label: "Privacy Policy", href: "/privacy" }] },
+ ];
+
if (isLoading) {
return (
setCartOpen(true) }}
/>
@@ -107,10 +117,7 @@ function ProductPageContent({ params }: ProductPageProps) {
@@ -135,10 +142,7 @@ function ProductPageContent({ params }: ProductPageProps) {
setCartOpen(true) }}
/>
@@ -159,10 +163,7 @@ function ProductPageContent({ params }: ProductPageProps) {
@@ -186,10 +187,7 @@ function ProductPageContent({ params }: ProductPageProps) {
setCartOpen(true) }}
/>
@@ -233,10 +231,7 @@ function ProductPageContent({ params }: ProductPageProps) {
diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx
index aef92c0..1fbfdbc 100644
--- a/src/app/shop/page.tsx
+++ b/src/app/shop/page.tsx
@@ -17,6 +17,19 @@ function ShopPageContent() {
filters,
} = useProductCatalog({ basePath: "/shop" });
+ const navItems = [
+ { name: "Home", id: "/" },
+ { name: "About", id: "/#about" },
+ { name: "Menu", id: "/#product" },
+ { name: "Testimonials", id: "/#testimonials" },
+ { name: "Contact", id: "/#contact" },
+ ];
+
+ const footerColumns = [
+ { items: [{ label: "Home", href: "/" }, { label: "Menu", href: "/#product" }, { label: "About Us", href: "/#about" }] },
+ { items: [{ label: "Contact", href: "/#contact" }, { label: "Blog", href: "/blog" }, { label: "Privacy Policy", href: "/privacy" }] },
+ ];
+
if (isLoading) {
return (
{} }}
/>
@@ -50,10 +60,7 @@ function ShopPageContent() {
@@ -77,10 +84,7 @@ function ShopPageContent() {
{} }}
/>
@@ -99,10 +103,7 @@ function ShopPageContent() {