Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #2.
This commit is contained in:
2026-02-20 18:06:24 +00:00
4 changed files with 15 additions and 21 deletions

View File

@@ -12,8 +12,6 @@ export default function BlogPage() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" },
];
return (

View File

@@ -31,13 +31,13 @@ export default function LandingPage() {
<NavbarStyleCentered
brandName="Goldenberg's Deli"
navItems={[
{name: "Menu", id: "#product"},
{name: "About", id: "#about"},
{name: "Testimonials", id: "#testimonial"},
{name: "FAQs", id: "#faq"},
{name: "Contact", id: "#contact"}
{name: "Menu", id: "product"},
{name: "About", id: "about"},
{name: "Testimonials", id: "testimonial"},
{name: "FAQs", id: "faq"},
{name: "Contact", id: "contact"}
]}
button={{text: "Order Now", href: "/#contact"}}
button={{text: "Order Now", href: "contact"}}
/>
</div>
<div id="hero" data-section="hero">
@@ -52,10 +52,10 @@ export default function LandingPage() {
]}
rating={5}
ratingText="Loved by Generations of Customers"
buttons={[{ text: "View Our Menu", href: "#product" }, { text: "Order Pickup", href: "#contact" }]}
buttons={[{ text: "View Our Menu", href: "product" }, { text: "Order Pickup", href: "contact" }]}
mediaAnimation="slide-up"
tagAnimation="reveal-blur"
buttonAnimation="reveal-blur"
tagAnimation="blur-reveal"
buttonAnimation="blur-reveal"
titleClassName="text-foreground"
descriptionClassName="text-foreground"
tagClassName="text-accent"
@@ -94,7 +94,7 @@ export default function LandingPage() {
stepsAnimation="slide-up"
useInvertedBackground={false}
tag="Our Process"
tagAnimation="reveal-blur"
tagAnimation="blur-reveal"
titleClassName="text-foreground"
descriptionClassName="text-foreground"
stepTitleClassName="text-foreground"
@@ -171,8 +171,8 @@ export default function LandingPage() {
]}
background={{ variant: 'plain' }}
useInvertedBackground={false}
tagAnimation="reveal-blur"
buttonAnimation="reveal-blur"
tagAnimation="blur-reveal"
buttonAnimation="blur-reveal"
titleClassName="text-foreground"
descriptionClassName="text-foreground"
tagClassName="text-accent"
@@ -182,9 +182,9 @@ export default function LandingPage() {
<FooterBase
logoText="Goldenberg's Deli"
columns={[
{ title: "Menu", items: [{ label: "Corned Beef", href: "#product" }, { label: "Pastrami", href: "#product" }, { label: "Soups", href: "#product" }, { label: "Sandwiches", href: "#product" }] },
{ title: "About Us", items: [{ label: "Our Story", href: "#about" }, { label: "Reviews", href: "#testimonial" }, { label: "FAQs", href: "#faq" }] },
{ title: "Contact", items: [{ label: "Location", href: "#contact" }, { label: "Catering", href: "#contact" }, { label: "Order Online", href: "#contact" }] }
{ title: "Menu", items: [{ label: "Corned Beef", href: "product" }, { label: "Pastrami", href: "product" }, { label: "Soups", href: "product" }, { label: "Sandwiches", href: "product" }] },
{ title: "About Us", items: [{ label: "Our Story", href: "about" }, { label: "Reviews", href: "testimonial" }, { label: "FAQs", href: "faq" }] },
{ title: "Contact", items: [{ label: "Location", href: "contact" }, { label: "Catering", href: "contact" }, { label: "Order Online", href: "contact" }] }
]}
copyrightText="© 2024 Goldenberg's Deli. All rights reserved."
/>

View File

@@ -76,8 +76,6 @@ function ProductPageContent({ params }: ProductPageProps) {
const navItems = [
{ name: "Home", id: "/" },
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" },
];
const footerColumns = [

View File

@@ -18,8 +18,6 @@ export default function ShopPage() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" },
];
const footerColumns = [