Add src/app/contact/page.tsx

This commit is contained in:
2026-05-09 08:33:43 +00:00
parent 6a44a042fa
commit eb19995247

70
src/app/contact/page.tsx Normal file
View File

@@ -0,0 +1,70 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
defaultTextAnimation="background-highlight"
borderRadius="soft"
contentWidth="mediumSmall"
sizing="mediumLargeSizeMediumTitles"
background="blurBottom"
cardStyle="layered-gradient"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="layered"
headingFontWeight="bold"
>
<ReactLenis root>
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/#services" },
{ name: "About", id: "/#about" },
{ name: "Contact", id: "/contact" },
]}
brandName="Madhur Radio"
/>
<div className="pt-32 pb-20">
<ContactSplitForm
title="Get in Touch"
description="Ready to elevate your event with professional sound and lighting? Contact us today for a free consultation and quote!"
inputs={[
{ name: "name", type: "text", placeholder: "Full Name", required: true },
{ name: "email", type: "email", placeholder: "Email Address", required: true },
{ name: "phone", type: "tel", placeholder: "Phone Number", required: true },
]}
textarea={{ name: "message", placeholder: "Tell us about your event (Date, Location, Requirements)", rows: 4, required: true }}
imageSrc="http://img.b2bpic.net/free-photo/close-up-sound-mixer_1359-7.jpg?_wi=2"
/>
</div>
<FooterBaseReveal
logoText="Madhur Radio"
columns={[
{
title: "Navigation", items: [
{ label: "Services", href: "/#services" },
{ label: "About", href: "/#about" },
{ label: "Contact", href: "/contact" },
],
},
{
title: "Contact", items: [
{ label: "9414646994", href: "tel:9414646994" },
{ label: "Email Us", href: "mailto:info@madhurradio.com" },
],
},
]}
copyrightText="© 2024 Madhur Radio. All rights reserved."
/>
</ReactLenis>
</ThemeProvider>
);
}