Update src/app/contact/page.tsx

This commit is contained in:
2026-03-08 07:14:26 +00:00
parent d2b2c48f55
commit 7befbb61a4

View File

@@ -5,6 +5,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import ContactSplit from "@/components/sections/contact/ContactSplit";
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
import { Phone } from "lucide-react";
export default function ContactPage() {
const navItems = [
@@ -33,9 +34,7 @@ export default function ContactPage() {
brandName="Hotel Garava"
navItems={navItems}
button={{
text: "Reserve Table",
href: "tel:+91-XXXXXXXXXX",
}}
text: "Reserve Table", href: "tel:+91-XXXXXXXXXX"}}
/>
</div>
@@ -44,10 +43,10 @@ export default function ContactPage() {
tag="Get In Touch"
title="Reserve Your Table or Room"
description="Contact us to make a reservation, ask questions, or learn more about our special offers. We're here to help make your visit memorable."
tagIcon="Phone"
tagIcon={Phone}
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/fried-chicken-with-mushrooms-tomato_140725-3752.jpg?_wi=7"
imageSrc="http://img.b2bpic.net/free-photo/fried-chicken-with-mushrooms-tomato_140725-3752.jpg"
mediaAnimation="slide-up"
mediaPosition="right"
inputPlaceholder="Enter your email"
@@ -63,13 +62,9 @@ export default function ContactPage() {
<FooterLogoReveal
logoText="Hotel Garava"
leftLink={{
text: "Privacy Policy",
href: "#",
}}
text: "Privacy Policy", href: "#"}}
rightLink={{
text: "Terms of Service",
href: "#",
}}
text: "Terms of Service", href: "#"}}
/>
</div>
</ThemeProvider>