5 Commits

Author SHA1 Message Date
e75bf99be8 Merge version_2 into main
Merge version_2 into main
2026-04-22 13:01:55 +00:00
eed45b5736 Update src/app/page.tsx 2026-04-22 13:01:48 +00:00
99536c7f92 Merge version_1 into main
Merge version_1 into main
2026-04-22 13:00:36 +00:00
b3673e2b7c Merge version_1 into main
Merge version_1 into main
2026-04-22 13:00:12 +00:00
9f7656e000 Merge version_1 into main
Merge version_1 into main
2026-04-22 12:59:46 +00:00

View File

@@ -2,10 +2,10 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroLogo from '@/components/sections/hero/HeroLogo';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
@@ -120,51 +120,51 @@ export default function LandingPage() {
</div>
<div id="faq" data-section="faq">
<FaqDouble
textboxLayout="default"
useInvertedBackground={true}
<FaqSplitText
faqs={[
{ id: "q1", title: "Are your plots approved?", content: "Yes, all our projects are fully legally approved with clear documentation." },
{ id: "q2", title: "Do you offer utility support?", content: "Yes, we handle end-to-end electrical and plumbing installations for your peace of mind." },
{ id: "q3", title: "How can I book a site visit?", content: "Simply call our office at the number listed below or send us an enquiry via the form." },
]}
title="Frequently Asked Questions"
description="Common inquiries about our housing and infrastructure services in Vellore."
sideTitle="Frequently Asked Questions"
sideDescription="Common inquiries about our housing and infrastructure services in Vellore."
faqsAnimation="slide-up"
useInvertedBackground={true}
/>
</div>
<div id="contact" data-section="contact">
<ContactSplit
<ContactSplitForm
title="Get in Touch"
description="Leave us your details and we will get back to you shortly regarding your real estate queries."
inputs={[
{ name: "name", type: "text", placeholder: "Full Name", required: true },
{ name: "email", type: "email", placeholder: "Email Address", required: true },
]}
textarea={{ name: "message", placeholder: "How can we help you?", rows: 4 }}
useInvertedBackground={false}
background={{ variant: "gradient-bars" }}
tag="Contact Us"
title="Get in Touch with Maria Housing"
description="Visit us at Old No. 98, Bankmans Colony, Alamelumangapuram, Sathuvachari, Vellore or enquire today."
mediaAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/raw-concrete-building-construction-against-cloudy-sky_626616-500.jpg?_wi=2"
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/vertical-shot-white-geometrical-structure-white-background_181624-8360.jpg"
logoText="Maria Housing & Shan Infraa"
<FooterSimple
columns={[
{ title: "Quick Links", items: [
{ label: "Home", href: "#hero" },
{ label: "About Us", href: "#about" },
{ label: "Services", href: "#services" },
] },
{ title: "Location", items: [
{ label: "Sathuvachari, Vellore", href: "#" },
{ label: "Office Address", href: "#" },
] },
{ title: "Support", items: [
{ label: "Call: 000-000-0000", href: "tel:0000000000" },
{ label: "WhatsApp Support", href: "https://wa.me/message" },
] },
] },
{ title: "Contact", items: [
{ label: "Sathuvachari, Vellore" },
{ label: "000-000-0000", href: "tel:0000000000" },
] },
{ title: "Legal", items: [
{ label: "Privacy Policy" },
{ label: "Terms of Service" },
] }
]}
bottomLeftText="© 2025 Maria Housing"
bottomRightText="All Rights Reserved"
/>
</div>
</ReactLenis>