Merge version_4 into main #6

Merged
bender merged 4 commits from version_4 into main 2026-04-23 05:50:13 +00:00
4 changed files with 8 additions and 12 deletions

View File

@@ -31,7 +31,6 @@ export default function AboutPage() {
<NavbarLayoutFloatingInline
navItems={navLinks}
brandName="DINE HOUSE"
button={{ text: "Book Now", href: "#contact" }}
/>
</div>
@@ -47,7 +46,7 @@ export default function AboutPage() {
<FooterBaseReveal
logoText="DINE HOUSE"
columns={[]}
copyrightText="© 2024 Dine House Restaurant."
copyrightText="© 2024 Dine House Restaurant. No delivery or table booking services available."
/>
</div>
</ReactLenis>

View File

@@ -23,9 +23,8 @@ export default function ContactPage() {
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[{name: 'Home', id: '/'}, {name: 'Contact', id: '/contact'}, {name: 'Reservations', id: '/reservations'}]}
navItems={[{name: 'Home', id: '/'}, {name: 'Contact', id: '/contact'}]}
brandName="DINE HOUSE"
button={{ text: "Book Now", href: "/reservations" }}
/>
</div>
@@ -40,8 +39,8 @@ export default function ContactPage() {
<div id="footer" data-section="footer">
<FooterBaseReveal
logoText="DINE HOUSE"
columns={[{ title: 'Navigation', items: [{label: 'Home', href: '/'}, {label: 'Contact', href: '/contact'}, {label: 'Reservations', href: '/reservations'}]}]}
copyrightText="© 2024 Dine House Restaurant."
columns={[{ title: 'Navigation', items: [{label: 'Home', href: '/'}, {label: 'Contact', href: '/contact'}]}]}
copyrightText="© 2024 Dine House Restaurant. No delivery or table booking services available."
/>
</div>
</ReactLenis>

View File

@@ -31,7 +31,6 @@ export default function MenuPage() {
<NavbarLayoutFloatingInline
navItems={navLinks}
brandName="DINE HOUSE"
button={{ text: "Book Now", href: "#contact" }}
/>
</div>
@@ -53,7 +52,7 @@ export default function MenuPage() {
<FooterBaseReveal
logoText="DINE HOUSE"
columns={[]}
copyrightText="© 2024 Dine House Restaurant."
copyrightText="© 2024 Dine House Restaurant. No delivery or table booking services available."
/>
</div>
</ReactLenis>

View File

@@ -22,17 +22,16 @@ export default function LandingPage() {
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[{name: 'Home', id: '/'}, {name: 'Contact', id: '/contact'}, {name: 'Reservations', id: '/reservations'}]}
navItems={[{name: 'Home', id: '/'}, {name: 'Contact', id: '/contact'}]}
brandName="DINE HOUSE"
button={{ text: "Book Now", href: "/reservations" }}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
logoText="DINE HOUSE"
columns={[{ title: 'Navigation', items: [{label: 'Home', href: '/'}, {label: 'Contact', href: '/contact'}, {label: 'Reservations', href: '/reservations'}]}]}
copyrightText="© 2024 Dine House Restaurant."
columns={[{ title: 'Navigation', items: [{label: 'Home', href: '/'}, {label: 'Contact', href: '/contact'}]}]}
copyrightText="© 2024 Dine House Restaurant. No delivery or table booking services available."
/>
</div>
</ReactLenis>