Update src/app/contact/page.tsx

This commit is contained in:
2026-05-09 08:36:01 +00:00
parent c22dd979c5
commit 166e85bf72

View File

@@ -8,22 +8,23 @@ import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
export default function ContactPage() {
return (
<ThemeProvider>
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ReactLenis root>
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/" },
{ name: "About", id: "/" },
{ name: "Contact", id: "/contact" },
]}
brandName="Madhur Radio"
/>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "Gallery", id: "/gallery" },
{ name: "Booking", id: "/booking" },
{ name: "Contact", id: "/contact" },
]}
brandName="Madhur Radio"
/>
</div>
<div className="pt-32 pb-20">
<ContactText
useInvertedBackground={false}
background={{ variant: "gradient-bars" }}
title="Contact Us"
text="Get in touch for bookings, queries, or event planning in Sawai Madhopur. We are here to make your event memorable."
buttons={[{ text: "Call Now: 9414646994", href: "tel:9414646994" }, { text: "WhatsApp", href: "https://wa.me/919414646994" }]}
/>
@@ -31,7 +32,7 @@ export default function ContactPage() {
<FooterBaseReveal
logoText="Madhur Radio"
columns={[
{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "Services", href: "/" }, { label: "About", href: "/" }, { label: "Contact", href: "/contact" }] },
{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "Gallery", href: "/gallery" }, { label: "Booking", href: "/booking" }, { label: "Contact", href: "/contact" }] },
{ title: "Business Info", items: [{ label: "Sawai Madhopur", href: "#" }, { label: "9414646994", href: "tel:9414646994" }] }
]}
copyrightText="© 2025 Madhur Radio. All rights reserved."
@@ -39,4 +40,4 @@ export default function ContactPage() {
</ReactLenis>
</ThemeProvider>
);
}
}