4 Commits

Author SHA1 Message Date
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 { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import ContactSplit from '@/components/sections/contact/ContactSplit'; import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FaqDouble from '@/components/sections/faq/FaqDouble'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree'; 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 HeroLogo from '@/components/sections/hero/HeroLogo';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardThree from '@/components/sections/product/ProductCardThree'; import ProductCardThree from '@/components/sections/product/ProductCardThree';
@@ -120,51 +120,51 @@ export default function LandingPage() {
</div> </div>
<div id="faq" data-section="faq"> <div id="faq" data-section="faq">
<FaqDouble <FaqSplitText
textboxLayout="default"
useInvertedBackground={true}
faqs={[ faqs={[
{ id: "q1", title: "Are your plots approved?", content: "Yes, all our projects are fully legally approved with clear documentation." }, { 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: "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." }, { 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" sideTitle="Frequently Asked Questions"
description="Common inquiries about our housing and infrastructure services in Vellore." sideDescription="Common inquiries about our housing and infrastructure services in Vellore."
faqsAnimation="slide-up" faqsAnimation="slide-up"
useInvertedBackground={true}
/> />
</div> </div>
<div id="contact" data-section="contact"> <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} 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>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterMedia <FooterSimple
imageSrc="http://img.b2bpic.net/free-photo/vertical-shot-white-geometrical-structure-white-background_181624-8360.jpg"
logoText="Maria Housing & Shan Infraa"
columns={[ columns={[
{ title: "Quick Links", items: [ { title: "Quick Links", items: [
{ label: "Home", href: "#hero" }, { label: "Home", href: "#hero" },
{ label: "About Us", href: "#about" }, { label: "About Us", href: "#about" },
{ label: "Services", href: "#services" }, { label: "Services", href: "#services" },
] }, ] },
{ title: "Location", items: [ { title: "Contact", items: [
{ label: "Sathuvachari, Vellore", href: "#" }, { label: "Sathuvachari, Vellore" },
{ label: "Office Address", href: "#" }, { label: "000-000-0000", href: "tel:0000000000" },
] }, ] },
{ title: "Support", items: [ { title: "Legal", items: [
{ label: "Call: 000-000-0000", href: "tel:0000000000" }, { label: "Privacy Policy" },
{ label: "WhatsApp Support", href: "https://wa.me/message" }, { label: "Terms of Service" },
] }, ] }
]} ]}
bottomLeftText="© 2025 Maria Housing"
bottomRightText="All Rights Reserved"
/> />
</div> </div>
</ReactLenis> </ReactLenis>