diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 21191b8..e62a5b8 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -11,34 +11,31 @@ import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; export default function AboutPage() { const navItems = [ { name: "Home", id: "/" }, - { name: "Projects", id: "/" }, + { name: "Projects", id: "/projects" }, { name: "About", id: "/about" }, - { name: "Contact", id: "#contact" }, + { name: "Contact", id: "/contact" }, { name: "WhatsApp", id: "https://wa.me/919840915150" }, ]; const footerColumns = [ { - title: "Quick Links", - items: [ + title: "Quick Links", items: [ { label: "Home", href: "/" }, - { label: "Projects", href: "/#featured-projects" }, + { label: "Projects", href: "/projects" }, { label: "About Us", href: "/about" }, - { label: "Contact", href: "#contact" }, + { label: "Contact", href: "/contact" }, ], }, { - title: "Services", - items: [ - { label: "DTCP Approved Plots", href: "/#services" }, - { label: "Residential Development", href: "/#services" }, - { label: "Land Investment", href: "/#services" }, - { label: "Construction Services", href: "/#services" }, + title: "Services", items: [ + { label: "DTCP Approved Plots", href: "#services" }, + { label: "Residential Development", href: "#services" }, + { label: "Land Investment", href: "#services" }, + { label: "Construction Services", href: "#services" }, ], }, { - title: "Contact Info", - items: [ + title: "Contact Info", items: [ { label: "Phone: 098409 15150", href: "tel:098409 15150" }, { label: "WhatsApp: Message Us", href: "https://wa.me/919840915150" }, { label: "Kolathur, Chennai", href: "#" }, @@ -46,8 +43,7 @@ export default function AboutPage() { ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms & Conditions", href: "#" }, { label: "DTCP Compliance", href: "#" }, @@ -87,7 +83,7 @@ export default function AboutPage() { tag="Our Story" buttons={[ { text: "Learn More", href: "#values" }, - { text: "Contact Us", href: "#contact" }, + { text: "Contact Us", href: "/contact" }, ]} imageSrc="http://img.b2bpic.net/free-photo/man-using-smartphone-near-colleague_23-2147808088.jpg?_wi=4" imageAlt="Guhan Builders team and company office" @@ -104,25 +100,13 @@ export default function AboutPage() { features={[ { id: 1, - title: "Trust & Transparency", - description: "Every project is backed by complete legal documentation, DTCP approvals, and transparent pricing. We believe in honest dealings and long-term customer relationships.", - imageSrc: "http://img.b2bpic.net/free-photo/kids-having-fun-with-traditional-games_23-2149317161.jpg?_wi=4", - imageAlt: "Trust and transparency in real estate", - }, + title: "Trust & Transparency", description: "Every project is backed by complete legal documentation, DTCP approvals, and transparent pricing. We believe in honest dealings and long-term customer relationships.", imageSrc: "http://img.b2bpic.net/free-photo/kids-having-fun-with-traditional-games_23-2149317161.jpg?_wi=4", imageAlt: "Trust and transparency in real estate"}, { id: 2, - title: "Quality Development", - description: "Our developments feature modern infrastructure, green spaces, safety features, and planned amenities. We construct with longevity and community welfare in mind.", - imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-village-coast-algarve-portugal-concept-beach-portugal-summer-vacations_231208-6931.jpg?_wi=4", - imageAlt: "Quality residential development", - }, + title: "Quality Development", description: "Our developments feature modern infrastructure, green spaces, safety features, and planned amenities. We construct with longevity and community welfare in mind.", imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-village-coast-algarve-portugal-concept-beach-portugal-summer-vacations_231208-6931.jpg?_wi=4", imageAlt: "Quality residential development"}, { id: 3, - title: "Customer-First Approach", - description: "Your satisfaction is our success. We provide ongoing support from site selection through registration, construction assistance, and post-sale services.", - imageSrc: "http://img.b2bpic.net/free-photo/grass-field-daytime_181624-1502.jpg?_wi=4", - imageAlt: "Customer support and satisfaction", - }, + title: "Customer-First Approach", description: "Your satisfaction is our success. We provide ongoing support from site selection through registration, construction assistance, and post-sale services.", imageSrc: "http://img.b2bpic.net/free-photo/grass-field-daytime_181624-1502.jpg?_wi=4", imageAlt: "Customer support and satisfaction"}, ]} textboxLayout="default" useInvertedBackground={true} @@ -158,4 +142,4 @@ export default function AboutPage() { ); -} \ No newline at end of file +} diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 8656bc1..0dbf699 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -11,24 +11,22 @@ export default function ContactPage() { const navItems = [ { name: "Home", id: "/" }, { name: "Projects", id: "/projects" }, - { name: "About", id: "#about" }, + { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }, { name: "WhatsApp", id: "https://wa.me/919840915150" }, ]; const footerColumns = [ { - title: "Quick Links", - items: [ + title: "Quick Links", items: [ { label: "Home", href: "/" }, { label: "Projects", href: "/projects" }, - { label: "About Us", href: "#about" }, + { label: "About Us", href: "/about" }, { label: "Contact", href: "/contact" }, ], }, { - title: "Services", - items: [ + title: "Services", items: [ { label: "DTCP Approved Plots", href: "#services" }, { label: "Residential Development", href: "#services" }, { label: "Land Investment", href: "#services" }, @@ -36,8 +34,7 @@ export default function ContactPage() { ], }, { - title: "Contact Info", - items: [ + title: "Contact Info", items: [ { label: "Phone: 098409 15150", href: "tel:098409 15150" }, { label: "WhatsApp: Message Us", href: "https://wa.me/919840915150" }, { label: "Kolathur, Chennai", href: "#" }, @@ -45,8 +42,7 @@ export default function ContactPage() { ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms & Conditions", href: "#" }, { label: "DTCP Compliance", href: "#" }, @@ -83,40 +79,23 @@ export default function ContactPage() { description="Fill out the form below and our team will contact you within 24 hours with available plot options and site visit schedules that match your requirements." inputs={[ { - name: "name", - type: "text", - placeholder: "Your Full Name", - required: true, + name: "name", type: "text", placeholder: "Your Full Name", required: true, }, { - name: "phone", - type: "tel", - placeholder: "Phone Number", - required: true, + name: "phone", type: "tel", placeholder: "Phone Number", required: true, }, { - name: "email", - type: "email", - placeholder: "Email Address", - required: true, + name: "email", type: "email", placeholder: "Email Address", required: true, }, { - name: "location", - type: "text", - placeholder: "Preferred Location (e.g., Kolathur, Paper Mills)", - required: true, + name: "location", type: "text", placeholder: "Preferred Location (e.g., Kolathur, Paper Mills)", required: true, }, { - name: "budget", - type: "text", - placeholder: "Budget Range", - required: false, + name: "budget", type: "text", placeholder: "Budget Range", required: false, }, ]} textarea={{ - name: "message", - placeholder: "Tell us about your requirements and timeline", - rows: 5, + name: "message", placeholder: "Tell us about your requirements and timeline", rows: 5, required: false, }} useInvertedBackground={true} @@ -138,35 +117,17 @@ export default function ContactPage() { tag="Help & Support" faqs={[ { - id: "1", - title: "Are all plots DTCP approved?", - content: "Yes, 100% of our residential and commercial plots are DTCP (Directorate of Town and Country Planning) approved. We provide complete legal documentation and clear title deeds for all properties.", - }, + id: "1", title: "Are all plots DTCP approved?", content: "Yes, 100% of our residential and commercial plots are DTCP (Directorate of Town and Country Planning) approved. We provide complete legal documentation and clear title deeds for all properties."}, { - id: "2", - title: "What is the average price range for plots?", - content: "Our plots range from ₹24,000 to ₹50,000 per sq.ft depending on location, size, and amenities. Premium locations like Haridoss Main Road command higher prices while developing areas offer more affordable options.", - }, + id: "2", title: "What is the average price range for plots?", content: "Our plots range from ₹24,000 to ₹50,000 per sq.ft depending on location, size, and amenities. Premium locations like Haridoss Main Road command higher prices while developing areas offer more affordable options."}, { - id: "3", - title: "Do you offer financing options?", - content: "Yes, we assist customers with bank liaisons and financing options. We work with leading banks to facilitate home loans and investment credits for eligible buyers.", - }, + id: "3", title: "Do you offer financing options?", content: "Yes, we assist customers with bank liaisons and financing options. We work with leading banks to facilitate home loans and investment credits for eligible buyers."}, { - id: "4", - title: "How can NRI investors purchase plots?", - content: "NRI investors can purchase our plots with proper documentation. We handle all NRI-specific requirements including NOC verification and overseas fund transfer facilitation.", - }, + id: "4", title: "How can NRI investors purchase plots?", content: "NRI investors can purchase our plots with proper documentation. We handle all NRI-specific requirements including NOC verification and overseas fund transfer facilitation."}, { - id: "5", - title: "What is the typical registration process?", - content: "Our team guides you through the entire registration process. It typically takes 2-3 weeks after payment. We provide all necessary documentation support including property deed registration at the sub-registrar office.", - }, + id: "5", title: "What is the typical registration process?", content: "Our team guides you through the entire registration process. It typically takes 2-3 weeks after payment. We provide all necessary documentation support including property deed registration at the sub-registrar office."}, { - id: "6", - title: "Do you provide construction support?", - content: "Yes, we offer professional construction services and contractor recommendations. We can help coordinate your building project from site preparation through completion.", - }, + id: "6", title: "Do you provide construction support?", content: "Yes, we offer professional construction services and contractor recommendations. We can help coordinate your building project from site preparation through completion."}, ]} imageSrc="http://img.b2bpic.net/free-photo/multiethnic-customer-support-team-work_482257-121935.jpg" imageAlt="Our team ready to answer questions" @@ -187,4 +148,4 @@ export default function ContactPage() { ); -} \ No newline at end of file +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 89d1302..55cc888 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -16,24 +16,22 @@ export default function HomePage() { const navItems = [ { name: "Home", id: "/" }, { name: "Projects", id: "/projects" }, - { name: "About", id: "#about" }, + { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }, { name: "WhatsApp", id: "https://wa.me/919840915150" }, ]; const footerColumns = [ { - title: "Quick Links", - items: [ + title: "Quick Links", items: [ { label: "Home", href: "/" }, { label: "Projects", href: "/projects" }, - { label: "About Us", href: "#about" }, + { label: "About Us", href: "/about" }, { label: "Contact", href: "/contact" }, ], }, { - title: "Services", - items: [ + title: "Services", items: [ { label: "DTCP Approved Plots", href: "#services" }, { label: "Residential Development", href: "#services" }, { label: "Land Investment", href: "#services" }, @@ -41,8 +39,7 @@ export default function HomePage() { ], }, { - title: "Contact Info", - items: [ + title: "Contact Info", items: [ { label: "Phone: 098409 15150", href: "tel:098409 15150" }, { label: "WhatsApp: Message Us", href: "https://wa.me/919840915150" }, { label: "Kolathur, Chennai", href: "#" }, @@ -50,8 +47,7 @@ export default function HomePage() { ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms & Conditions", href: "#" }, { label: "DTCP Compliance", href: "#" }, @@ -94,6 +90,7 @@ export default function HomePage() { imageAlt="Residential plots development in Kolathur, Chennai" showDimOverlay={true} buttonAnimation="slide-up" + logoContainerClassName="text-purple-500" /> @@ -104,37 +101,13 @@ export default function HomePage() { tag="Trust Metrics" metrics={[ { - id: "1", - value: "4.5★", - title: "Customer Rating", - description: "Rated by 80+ satisfied customers", - imageSrc: "http://img.b2bpic.net/free-photo/kids-having-fun-with-traditional-games_23-2149317161.jpg?_wi=1", - imageAlt: "Completed residential projects", - }, + id: "1", value: "4.5★", title: "Customer Rating", description: "Rated by 80+ satisfied customers", imageSrc: "http://img.b2bpic.net/free-photo/kids-having-fun-with-traditional-games_23-2149317161.jpg?_wi=1", imageAlt: "Completed residential projects"}, { - id: "2", - value: "15+", - title: "Years Experience", - description: "Building trust in Chennai real estate", - imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-village-coast-algarve-portugal-concept-beach-portugal-summer-vacations_231208-6931.jpg?_wi=1", - imageAlt: "Professional real estate experience", - }, + id: "2", value: "15+", title: "Years Experience", description: "Building trust in Chennai real estate", imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-village-coast-algarve-portugal-concept-beach-portugal-summer-vacations_231208-6931.jpg?_wi=1", imageAlt: "Professional real estate experience"}, { - id: "3", - value: "50+", - title: "Completed Projects", - description: "Successfully delivered developments", - imageSrc: "http://img.b2bpic.net/free-photo/grass-field-daytime_181624-1502.jpg?_wi=1", - imageAlt: "Project portfolio showcase", - }, + id: "3", value: "50+", title: "Completed Projects", description: "Successfully delivered developments", imageSrc: "http://img.b2bpic.net/free-photo/grass-field-daytime_181624-1502.jpg?_wi=1", imageAlt: "Project portfolio showcase"}, { - id: "4", - value: "2000+", - title: "Happy Customers", - description: "Families invested in our projects", - imageSrc: "http://img.b2bpic.net/free-photo/man-using-smartphone-near-colleague_23-2147808088.jpg?_wi=1", - imageAlt: "Customer satisfaction showcase", - }, + id: "4", value: "2000+", title: "Happy Customers", description: "Families invested in our projects", imageSrc: "http://img.b2bpic.net/free-photo/man-using-smartphone-near-colleague_23-2147808088.jpg?_wi=1", imageAlt: "Customer satisfaction showcase"}, ]} animationType="slide-up" textboxLayout="default" @@ -150,32 +123,16 @@ export default function HomePage() { features={[ { id: 1, - title: "DTCP Approved Plots", - description: "100% government-approved residential and commercial plots with clear documentation and legal clearance. Investment-ready properties with guaranteed ownership.", - imageSrc: "http://img.b2bpic.net/free-photo/kids-having-fun-with-traditional-games_23-2149317161.jpg?_wi=2", - imageAlt: "DTCP approved plots", - }, + title: "DTCP Approved Plots", description: "100% government-approved residential and commercial plots with clear documentation and legal clearance. Investment-ready properties with guaranteed ownership.", imageSrc: "http://img.b2bpic.net/free-photo/kids-having-fun-with-traditional-games_23-2149317161.jpg?_wi=2", imageAlt: "DTCP approved plots"}, { id: 2, - title: "Residential Development", - description: "Modern residential community layouts with essential amenities, green spaces, and planned infrastructure. Ready for construction or immediate occupancy.", - imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-village-coast-algarve-portugal-concept-beach-portugal-summer-vacations_231208-6931.jpg?_wi=2", - imageAlt: "Residential community development", - }, + title: "Residential Development", description: "Modern residential community layouts with essential amenities, green spaces, and planned infrastructure. Ready for construction or immediate occupancy.", imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-village-coast-algarve-portugal-concept-beach-portugal-summer-vacations_231208-6931.jpg?_wi=2", imageAlt: "Residential community development"}, { id: 3, - title: "Land Investment Opportunities", - description: "Strategic land parcels in high-growth Chennai areas. Perfect for investors seeking appreciation and sustainable returns on real estate investment.", - imageSrc: "http://img.b2bpic.net/free-photo/grass-field-daytime_181624-1502.jpg?_wi=2", - imageAlt: "Land investment opportunities", - }, + title: "Land Investment Opportunities", description: "Strategic land parcels in high-growth Chennai areas. Perfect for investors seeking appreciation and sustainable returns on real estate investment.", imageSrc: "http://img.b2bpic.net/free-photo/grass-field-daytime_181624-1502.jpg?_wi=2", imageAlt: "Land investment opportunities"}, { id: 4, - title: "Construction Services", - description: "Professional construction support for plot owners. Quality assured building execution by experienced contractors with transparent project management.", - imageSrc: "http://img.b2bpic.net/free-photo/man-using-smartphone-near-colleague_23-2147808088.jpg?_wi=2", - imageAlt: "Construction services and support", - }, + title: "Construction Services", description: "Professional construction support for plot owners. Quality assured building execution by experienced contractors with transparent project management.", imageSrc: "http://img.b2bpic.net/free-photo/man-using-smartphone-near-colleague_23-2147808088.jpg?_wi=2", imageAlt: "Construction services and support"}, ]} textboxLayout="default" useInvertedBackground={true} @@ -190,26 +147,11 @@ export default function HomePage() { tag="Current Offerings" products={[ { - id: "1", - name: "Kolathur Green Residency", - price: "₹28,000 - ₹45,000/sq.ft", - imageSrc: "http://img.b2bpic.net/free-photo/kids-having-fun-with-traditional-games_23-2149317161.jpg?_wi=3", - imageAlt: "Kolathur Green Residency plots", - }, + id: "1", name: "Kolathur Green Residency", price: "₹28,000 - ₹45,000/sq.ft", imageSrc: "http://img.b2bpic.net/free-photo/kids-having-fun-with-traditional-games_23-2149317161.jpg?_wi=3", imageAlt: "Kolathur Green Residency plots"}, { - id: "2", - name: "Paper Mills Eco Plots", - price: "₹24,000 - ₹38,000/sq.ft", - imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-village-coast-algarve-portugal-concept-beach-portugal-summer-vacations_231208-6931.jpg?_wi=3", - imageAlt: "Paper Mills Eco Plots development", - }, + id: "2", name: "Paper Mills Eco Plots", price: "₹24,000 - ₹38,000/sq.ft", imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-village-coast-algarve-portugal-concept-beach-portugal-summer-vacations_231208-6931.jpg?_wi=3", imageAlt: "Paper Mills Eco Plots development"}, { - id: "3", - name: "Haridoss Main Road Ventures", - price: "₹32,000 - ₹50,000/sq.ft", - imageSrc: "http://img.b2bpic.net/free-photo/grass-field-daytime_181624-1502.jpg?_wi=3", - imageAlt: "Haridoss Main Road development", - }, + id: "3", name: "Haridoss Main Road Ventures", price: "₹32,000 - ₹50,000/sq.ft", imageSrc: "http://img.b2bpic.net/free-photo/grass-field-daytime_181624-1502.jpg?_wi=3", imageAlt: "Haridoss Main Road development"}, ]} gridVariant="three-columns-all-equal-width" animationType="slide-up" @@ -228,14 +170,7 @@ export default function HomePage() { description="Join over 2,000 satisfied customers who have found their ideal property investment with Guhan Builders" tag="Our Community" names={[ - "First Time Home Buyers", - "NRI Investors", - "Real Estate Professionals", - "Family Investors", - "Business Entrepreneurs", - "Property Agents", - "Corporate Groups", - ]} + "First Time Home Buyers", "NRI Investors", "Real Estate Professionals", "Family Investors", "Business Entrepreneurs", "Property Agents", "Corporate Groups"]} textboxLayout="default" useInvertedBackground={true} speed={40} @@ -250,41 +185,17 @@ export default function HomePage() { ); -} \ No newline at end of file +} diff --git a/src/app/projects/page.tsx b/src/app/projects/page.tsx index 256adb7..fb929c7 100644 --- a/src/app/projects/page.tsx +++ b/src/app/projects/page.tsx @@ -12,24 +12,22 @@ export default function ProjectsPage() { const navItems = [ { name: "Home", id: "/" }, { name: "Projects", id: "/projects" }, - { name: "About", id: "#about" }, + { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }, { name: "WhatsApp", id: "https://wa.me/919840915150" }, ]; const footerColumns = [ { - title: "Quick Links", - items: [ + title: "Quick Links", items: [ { label: "Home", href: "/" }, { label: "Projects", href: "/projects" }, - { label: "About Us", href: "#about" }, + { label: "About Us", href: "/about" }, { label: "Contact", href: "/contact" }, ], }, { - title: "Services", - items: [ + title: "Services", items: [ { label: "DTCP Approved Plots", href: "#services" }, { label: "Residential Development", href: "#services" }, { label: "Land Investment", href: "#services" }, @@ -37,8 +35,7 @@ export default function ProjectsPage() { ], }, { - title: "Contact Info", - items: [ + title: "Contact Info", items: [ { label: "Phone: 098409 15150", href: "tel:098409 15150" }, { label: "WhatsApp: Message Us", href: "https://wa.me/919840915150" }, { label: "Kolathur, Chennai", href: "#" }, @@ -46,8 +43,7 @@ export default function ProjectsPage() { ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms & Conditions", href: "#" }, { label: "DTCP Compliance", href: "#" }, @@ -86,25 +82,13 @@ export default function ProjectsPage() { features={[ { id: 1, - title: "Kolathur Green Residency Phase 1", - description: "150 plots developed on 8 acres with modern amenities, open spaces, and verified DTCP approval. Completed in 2022 with 98% occupancy rate.", - imageSrc: "http://img.b2bpic.net/free-photo/kids-having-fun-with-traditional-games_23-2149317161.jpg?_wi=5", - imageAlt: "Kolathur Green Residency completed phase", - }, + title: "Kolathur Green Residency Phase 1", description: "150 plots developed on 8 acres with modern amenities, open spaces, and verified DTCP approval. Completed in 2022 with 98% occupancy rate.", imageSrc: "http://img.b2bpic.net/free-photo/kids-having-fun-with-traditional-games_23-2149317161.jpg?_wi=5", imageAlt: "Kolathur Green Residency completed phase"}, { id: 2, - title: "Paper Mills Eco Plots Development", - description: "Strategic location near IT corridor offering 200+ residential plots with green landscaping. DTCP approved with infrastructure ready for construction.", - imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-village-coast-algarve-portugal-concept-beach-portugal-summer-vacations_231208-6931.jpg?_wi=5", - imageAlt: "Paper Mills Eco Plots layout", - }, + title: "Paper Mills Eco Plots Development", description: "Strategic location near IT corridor offering 200+ residential plots with green landscaping. DTCP approved with infrastructure ready for construction.", imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-village-coast-algarve-portugal-concept-beach-portugal-summer-vacations_231208-6931.jpg?_wi=5", imageAlt: "Paper Mills Eco Plots layout"}, { id: 3, - title: "Haridoss Main Road Premium Ventures", - description: "Premium mixed-use development with commercial and residential plots. High visibility location with excellent connectivity and appreciation potential.", - imageSrc: "http://img.b2bpic.net/free-photo/grass-field-daytime_181624-1502.jpg?_wi=5", - imageAlt: "Haridoss Main Road project area", - }, + title: "Haridoss Main Road Premium Ventures", description: "Premium mixed-use development with commercial and residential plots. High visibility location with excellent connectivity and appreciation potential.", imageSrc: "http://img.b2bpic.net/free-photo/grass-field-daytime_181624-1502.jpg?_wi=5", imageAlt: "Haridoss Main Road project area"}, ]} textboxLayout="default" useInvertedBackground={false} @@ -119,26 +103,11 @@ export default function ProjectsPage() { tag="Available Now" products={[ { - id: "1", - name: "Kolathur Green Residency - Plot 456", - price: "₹35,00,000 (1,250 sq.ft)", - imageSrc: "http://img.b2bpic.net/free-photo/kids-having-fun-with-traditional-games_23-2149317161.jpg?_wi=6", - imageAlt: "Plot 456 Kolathur Green Residency", - }, + id: "1", name: "Kolathur Green Residency - Plot 456", price: "₹35,00,000 (1,250 sq.ft)", imageSrc: "http://img.b2bpic.net/free-photo/kids-having-fun-with-traditional-games_23-2149317161.jpg?_wi=6", imageAlt: "Plot 456 Kolathur Green Residency"}, { - id: "2", - name: "Paper Mills Eco - Plot 789", - price: "₹28,00,000 (1,200 sq.ft)", - imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-village-coast-algarve-portugal-concept-beach-portugal-summer-vacations_231208-6931.jpg?_wi=6", - imageAlt: "Plot 789 Paper Mills Eco", - }, + id: "2", name: "Paper Mills Eco - Plot 789", price: "₹28,00,000 (1,200 sq.ft)", imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-village-coast-algarve-portugal-concept-beach-portugal-summer-vacations_231208-6931.jpg?_wi=6", imageAlt: "Plot 789 Paper Mills Eco"}, { - id: "3", - name: "Haridoss Main Road - Plot 234", - price: "₹48,00,000 (1,500 sq.ft)", - imageSrc: "http://img.b2bpic.net/free-photo/grass-field-daytime_181624-1502.jpg?_wi=6", - imageAlt: "Plot 234 Haridoss Main Road", - }, + id: "3", name: "Haridoss Main Road - Plot 234", price: "₹48,00,000 (1,500 sq.ft)", imageSrc: "http://img.b2bpic.net/free-photo/grass-field-daytime_181624-1502.jpg?_wi=6", imageAlt: "Plot 234 Haridoss Main Road"}, ]} gridVariant="three-columns-all-equal-width" animationType="slide-up" @@ -175,4 +144,4 @@ export default function ProjectsPage() { ); -} \ No newline at end of file +}