diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
new file mode 100644
index 0000000..12e0c92
--- /dev/null
+++ b/src/app/contact/page.tsx
@@ -0,0 +1,65 @@
+"use client";
+
+import ReactLenis from "lenis/react";
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
+import ContactFaq from "@/components/sections/contact/ContactFaq";
+import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
+import { Phone } from "lucide-react";
+
+export default function ContactPage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
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() {