diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..ad84830 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,81 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { Instagram, MapPin, Clock, Phone, Mail } from "lucide-react"; + +export default function ContactPage() { + return ( + + + + + + +
+
+

Location & Hours

+
+ +

123 Culinary Lane, Food City, FC 90210

+
+
+ +

Mon-Sun: 11:00 AM - 10:00 PM

+
+
+ +

(555) 123-4567

+
+
+ +

hello@thetable.com

+
+
+
+

Social Feed

+

Follow our journey on Instagram for daily specials and updates.

+ + @TheTableRestaurant + +
+
+ + +
+
+ ); +} \ No newline at end of file