Update src/app/contact/page.tsx
This commit is contained in:
@@ -2,11 +2,9 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactFaq from '@/components/sections/contact/ContactFaq';
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import { Phone } from "lucide-react";
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -27,107 +25,33 @@ export default function LandingPage() {
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "home",
|
||||
href: "/",
|
||||
},
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
href: "/about",
|
||||
},
|
||||
name: "About", id: "/about"},
|
||||
{
|
||||
name: "Services",
|
||||
id: "services",
|
||||
href: "/services",
|
||||
},
|
||||
name: "Services", id: "/services"},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "reviews",
|
||||
href: "/reviews",
|
||||
},
|
||||
name: "Reviews", id: "/reviews"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
href: "/contact",
|
||||
},
|
||||
name: "Contact", id: "/contact"}
|
||||
]}
|
||||
brandName="Adv. Madhubala Srivastava & Associate"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact-form" data-section="contact-form">
|
||||
<ContactSplitForm
|
||||
<div id="contact-page-details" data-section="contact-page-details">
|
||||
<ContactText
|
||||
text="Get in touch with Adv. Madhubala Srivastava & Associate today. We are located at:\nRd Number 1, near bale complex, opposite rakcha kali mandir, Patel Nagar, Bhuiyadih, Bhalubasa, Jamshedpur, Jharkhand 831009\n\nCall us: 062038 75586\n\nBusiness Hours: Opens 6 PM\n\nSubmit the form below for consultation requests."
|
||||
animationType="entrance-slide"
|
||||
buttons={[
|
||||
{
|
||||
text: "Call Now", href: "tel:+916203875586"},
|
||||
{
|
||||
text: "Get Directions", href: "https://maps.app.goo.gl/YOUR_GOOGLE_MAPS_LINK_HERE"}
|
||||
]}
|
||||
background={{
|
||||
variant: "plain"}}
|
||||
useInvertedBackground={false}
|
||||
title="Get in Touch with Our Legal Team"
|
||||
description="We are here to provide expert legal advice and representation. Please fill out the form below, and we will get back to you promptly."
|
||||
inputs={[
|
||||
{
|
||||
name: "name",
|
||||
type: "text",
|
||||
placeholder: "Your Full Name",
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
name: "email",
|
||||
type: "email",
|
||||
placeholder: "Your Email Address",
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
name: "phone",
|
||||
type: "tel",
|
||||
placeholder: "Your Phone Number (Optional)",
|
||||
required: false,
|
||||
},
|
||||
]}
|
||||
textarea={{
|
||||
name: "message",
|
||||
placeholder: "Tell us about your legal matter...",
|
||||
rows: 5,
|
||||
required: true,
|
||||
}}
|
||||
imageSrc="http://img.b2bpic.net/free-vector/colorful-linear-india-map-infographic_23-2148860215.jpg"
|
||||
imageAlt="Jamshedpur map with pin showing office location"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="left"
|
||||
buttonText="Send Message"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq-contact" data-section="faq-contact">
|
||||
<ContactFaq
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={true}
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "What types of cases do you handle?",
|
||||
content: "We specialize in Civil Law, Criminal Law, Family Law, and Property Law. Our experienced team is equipped to handle a wide range of legal matters within these areas.",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "How do I schedule a consultation?",
|
||||
content: "You can schedule a consultation by filling out the contact form on our website, calling our office directly, or sending us an email. We aim to respond within 24-48 hours.",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "What are your consultation fees?",
|
||||
content: "Our initial consultation fees vary depending on the complexity of the case. We will discuss all fee structures clearly during your initial inquiry.",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
title: "Where is your office located?",
|
||||
content: "Our office is conveniently located in Jamshedpur. Please refer to the map on our contact page for the exact address and directions.",
|
||||
},
|
||||
]}
|
||||
ctaTitle="Still Have Questions?"
|
||||
ctaDescription="Don't hesitate to reach out to us directly. We're here to provide clarity and support."
|
||||
ctaButton={{
|
||||
text: "Call Us Now",
|
||||
href: "tel:+91-9876543210",
|
||||
}}
|
||||
ctaIcon={Phone}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -135,56 +59,39 @@ export default function LandingPage() {
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Legal Services",
|
||||
items: [
|
||||
title: "Quick Links", items: [
|
||||
{
|
||||
label: "Civil Law",
|
||||
href: "/services#civil-law",
|
||||
},
|
||||
label: "Home", href: "/"},
|
||||
{
|
||||
label: "Criminal Law",
|
||||
href: "/services#criminal-law",
|
||||
},
|
||||
label: "About Us", href: "/about"},
|
||||
{
|
||||
label: "Family Law",
|
||||
href: "/services#family-law",
|
||||
},
|
||||
label: "Services", href: "/services"},
|
||||
{
|
||||
label: "Property Law",
|
||||
href: "/services#property-law",
|
||||
},
|
||||
],
|
||||
label: "Reviews", href: "/reviews"},
|
||||
{
|
||||
label: "Contact", href: "/contact"}
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "About Us",
|
||||
items: [
|
||||
title: "Legal", items: [
|
||||
{
|
||||
label: "Our Firm",
|
||||
href: "/about",
|
||||
},
|
||||
label: "Privacy Policy", href: "#"},
|
||||
{
|
||||
label: "Our Vision",
|
||||
href: "/about#vision",
|
||||
},
|
||||
label: "Terms of Service", href: "#"},
|
||||
{
|
||||
label: "Testimonials",
|
||||
href: "/reviews",
|
||||
},
|
||||
],
|
||||
label: "Disclaimer", href: "#"}
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
title: "Contact Details", items: [
|
||||
{
|
||||
label: "Contact Us",
|
||||
href: "/contact",
|
||||
},
|
||||
label: "Phone: 062038 75586", href: "tel:+916203875586"},
|
||||
{
|
||||
label: "FAQ",
|
||||
href: "/contact#faq",
|
||||
},
|
||||
],
|
||||
},
|
||||
label: "Address: Rd Number 1, near bale complex, opposite rakcha kali mandir, Patel Nagar, Bhuiyadih, Bhalubasa, Jamshedpur, Jharkhand 831009", href: "#"},
|
||||
{
|
||||
label: "Business Hours: Opens 6 PM", href: "#"}
|
||||
]
|
||||
}
|
||||
]}
|
||||
logoText="Adv. Madhubala Srivastava & Associate"
|
||||
copyrightText="© 2024 Adv. Madhubala Srivastava & Associate. All rights reserved."
|
||||
|
||||
Reference in New Issue
Block a user