From 59f9125b7b3f821b48baa30d8fb089ee209eb0c6 Mon Sep 17 00:00:00 2001 From: selvi Date: Thu, 5 Mar 2026 21:32:49 +0530 Subject: [PATCH] images, responsive updated --- src/components/home/home-1/ChooseSection.tsx | 4 ++-- src/components/home/home-1/FeaturesSection.tsx | 4 ++-- src/components/web-development-service/FAQ.tsx | 16 ++++++++-------- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/components/home/home-1/ChooseSection.tsx b/src/components/home/home-1/ChooseSection.tsx index 7dbb44b..0a531c5 100644 --- a/src/components/home/home-1/ChooseSection.tsx +++ b/src/components/home/home-1/ChooseSection.tsx @@ -1,14 +1,14 @@ import React from "react"; const ChooseSection = () => ( -
+
-
+
WELCOME TO METATRONCUBE

Driving Client Success with Cutting-Edge Digital Solutions in Web & App Development, SEO, and Digital Marketing

diff --git a/src/components/home/home-1/FeaturesSection.tsx b/src/components/home/home-1/FeaturesSection.tsx index 823ec99..d9b654d 100644 --- a/src/components/home/home-1/FeaturesSection.tsx +++ b/src/components/home/home-1/FeaturesSection.tsx @@ -169,9 +169,9 @@ const FeaturesSection = () => { />

{feature.title}

- + {/* - + */}

{feature.desc}

{/* Bottom white section with image + floating icon */} diff --git a/src/components/web-development-service/FAQ.tsx b/src/components/web-development-service/FAQ.tsx index 0e7baa8..0e1d25e 100644 --- a/src/components/web-development-service/FAQ.tsx +++ b/src/components/web-development-service/FAQ.tsx @@ -55,7 +55,7 @@ const AccordionItem = ({ onToggle, align, }: { - faq: { question: string; answer: string }; + faq: { q: string; a: string }; isOpen: boolean; onToggle: () => void; align: "left" | "right"; @@ -64,7 +64,7 @@ const AccordionItem = ({ className={`faqv2-item${isOpen ? " faqv2-item-open" : ""} faqv2-item-${align}`} >
); @@ -89,12 +89,12 @@ const FAQ = ({ faqData }: { faqData?: { question: string; answer: string }[] }) }; // If no faqData provided, use empty arrays - const faqs = faqData || []; - const half = Math.ceil(faqs.length / 2); - const leftFAQs = faqs.slice(0, half); - const rightFAQs = faqs.slice(half); + // const faqs = faqData || []; + // const half = Math.ceil(faqs.length / 2); + // const leftFAQs = faqs.slice(0, half); + // const rightFAQs = faqs.slice(half); - if (faqs.length === 0) return null; + // if (faqs.length === 0) return null; return (