Update src/app/page.tsx

This commit is contained in:
2026-03-03 12:37:11 +00:00
parent f0c09d5477
commit 3c9075cdb4

View File

@@ -33,6 +33,7 @@ export default function HomePage() {
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Beers", id: "/beers" },
{ name: "Order Online", id: "/order" },
{ name: "Events", id: "/events" },
{ name: "Contact", id: "/contact" },
]}
@@ -49,6 +50,7 @@ export default function HomePage() {
description="Award-Winning Craft Beer in Conception Bay South. Locally brewed. Community driven. Always fresh."
buttons={[
{ text: "View Our Beers", href: "/beers" },
{ text: "Order Online", href: "/order" },
{ text: "Get Directions", href: "#visit" },
]}
slides={[
@@ -202,4 +204,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}