diff --git a/src/app/page.tsx b/src/app/page.tsx index febc33d..de7b479 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -34,12 +34,11 @@ export default function ItalianRestaurantPage() { navItems={[ { name: "Menu", id: "menu" }, { name: "About", id: "about" }, - { name: "Reservations", id: "contact" }, + { name: "Reservations", id: "/contact" }, { name: "Reviews", id: "testimonials" } ]} button={{ - text: "Đặt cơm ", - href: "contact" + text: "Đặt cơm ", href: "/contact" }} /> @@ -54,15 +53,15 @@ export default function ItalianRestaurantPage() { imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BUoY1i7Q7GIRAyfpjMunrFAkim/uploaded-1774617203272-kzl7zv75.jpg" imageAlt="Elegant Italian restaurant dining room" buttons={[ - { text: "Đặt cơm ngay ", href: "contact" }, - { text: "View Menu", href: "menu" } + { text: "Đặt cơm ngay ", href: "/contact" }, + { text: "View Menu", href: "#menu" } ]} />
@@ -203,8 +156,8 @@ export default function ItalianRestaurantPage() { text="Ready to experience authentic Italian cuisine? Reserve your table at Bella Italia and join us for an evening of culinary excellence." background={{ variant: "plain" }} buttons={[ - { text: "Make a Reservation", href: "https://example.com/reservations" }, - { text: "Contact Us", href: "mailto:info@bellaitalia.com" } + { text: "Make a Reservation", href: "/contact" }, + { text: "Contact Us", href: "/contact" } ]} useInvertedBackground={false} /> @@ -214,7 +167,7 @@ export default function ItalianRestaurantPage() {