10 Commits

Author SHA1 Message Date
970398ffee Update src/app/page.tsx 2026-04-23 05:50:44 +00:00
c963e5883d Update src/app/menu/page.tsx 2026-04-23 05:50:43 +00:00
1dc496d59a Update src/app/contact/page.tsx 2026-04-23 05:50:43 +00:00
6378c77751 Update src/app/about/page.tsx 2026-04-23 05:50:42 +00:00
e6496e34f1 Update src/app/page.tsx 2026-04-23 05:50:10 +00:00
f521241c30 Update src/app/menu/page.tsx 2026-04-23 05:50:09 +00:00
bd8b18b783 Update src/app/contact/page.tsx 2026-04-23 05:50:09 +00:00
b228455849 Update src/app/about/page.tsx 2026-04-23 05:50:08 +00:00
6de7443a10 Merge version_3 into main
Merge version_3 into main
2026-04-23 05:49:43 +00:00
80cdecd93d Merge version_3 into main
Merge version_3 into main
2026-04-23 05:49:12 +00:00
4 changed files with 12 additions and 12 deletions

View File

@@ -31,7 +31,7 @@ export default function AboutPage() {
<NavbarLayoutFloatingInline
navItems={navLinks}
brandName="DINE HOUSE"
button={{ text: "Book Now", href: "#contact" }}
button={{ text: "Reserve", href: "/contact" }}
/>
</div>
@@ -47,7 +47,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,9 @@ 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" }}
button={{ text: "Reserve", href: "/contact" }}
/>
</div>
@@ -40,8 +40,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,7 @@ export default function MenuPage() {
<NavbarLayoutFloatingInline
navItems={navLinks}
brandName="DINE HOUSE"
button={{ text: "Book Now", href: "#contact" }}
button={{ text: "Reserve", href: "/contact" }}
/>
</div>
@@ -53,7 +53,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,17 @@ 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" }}
button={{ text: "Reserve", href: "/contact" }}
/>
</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>