DigitalFaq.js 7.84 KB


import Heading from "@/components/reuseables/Heading";
import Link from "next/link";
import React from "react";
import {
    Accordion,
    AccordionItem,
    AccordionItemHeading,
    AccordionItemButton,
    AccordionItemPanel,
} from "react-accessible-accordion";
import { motion } from "framer-motion";
import { Col, Row } from "react-bootstrap";
import { slideFromLeft } from "@/components/reuseables/variants";


const DigitalFaq = ({ }) => {
    return (
        <>
            <div className="faq-area digital_transformation_faq">
                <div className="container">
                    <div className="section-title">
                        {/* <span className="sub-title">{heading.Subtitle}</span> */}
                        <Heading el="h2" heading={"We Offer"} />
                    </div>
                    <div className="faq-accordion">
                        <Accordion allowZeroExpanded preExpanded={'0'}>

                            <AccordionItem uuid="b">
                                <AccordionItemHeading>
                                    <AccordionItemButton>
                                        ITeC App
                                    </AccordionItemButton>
                                </AccordionItemHeading>

                                <AccordionItemPanel>
                                    <p>
                                        Our proprietary ITeCApp bridges technology and expert finance support, transforming how individuals and businesses manage tax and compliance. Built for both B2B and B2C segments, the app simplifies complex financial tasks  keeping users ahead of the curve.
                                    </p>
                                    <div className="btn-1">
                                        <Link href={"#"} className="default-btn-three">
                                            Click here
                                            <i className="ri-arrow-right-line"></i>
                                        </Link>
                                    </div>
                                </AccordionItemPanel>
                            </AccordionItem>

                            <AccordionItem uuid="c">
                                <AccordionItemHeading>
                                    <AccordionItemButton>
                                        Digital Process Automation
                                    </AccordionItemButton>
                                </AccordionItemHeading>

                                <AccordionItemPanel>
                                    <p>
                                        Digital Process Automation (DPA) at Advith focuses on transforming finance and operational workflows into structured, streamlined, and system-driven processes. By reducing manual interventions, standardizing tasks, and enhancing visibility, DPA becomes the backbone of scalable and compliant finance functions.
                                    </p>
                                    <Row className="align-items-center">
                                        <Col lg={6} md={6} sm={12} >
                                            <motion.div
                                                variants={slideFromLeft(0.5)}
                                                initial={"hidden"}
                                                whileInView={"show"}
                                                viewport={{ once: false, amount: 0.4 }}
                                            >
                                                <div className="services-box-budget">
                                                    <div className="d-flex align-items-center">

                                                        <h3>
                                                            Zoho Product Implementation
                                                        </h3>
                                                    </div>

                                                    <p>{"As a certified Zoho Finance Advanced Partner, we provide end-to-end implementation of Zoho products tailored to streamline finance, HR, compliance, and operational workflows. Solutions are mapped to business processes, ensuring seamless automation, integration, and scalability across functions."}</p>

                                                    <Link
                                                        href={"#"}
                                                        // rel={
                                                        //     service?.slug?.endsWith(".pdf")
                                                        //         ? "noopener noreferrer"
                                                        //         : undefined
                                                        // }
                                                        className="default-btn"
                                                    >
                                                        Read More
                                                        <i className="ri-arrow-right-line"></i>
                                                    </Link>
                                                </div>
                                            </motion.div>
                                        </Col>
                                        <Col lg={6} md={6} sm={12} >
                                            <motion.div
                                                variants={slideFromLeft(0.5)}
                                                initial={"hidden"}
                                                whileInView={"show"}
                                                viewport={{ once: false, amount: 0.4 }}
                                            >
                                                <div className="services-box-budget">
                                                    <div className="d-flex align-items-center">

                                                        <h3>
                                                            Zoho Product Implementation
                                                        </h3>
                                                    </div>

                                                    <p>{"As a certified Zoho Finance Advanced Partner, we provide end-to-end implementation of Zoho products tailored to streamline finance, HR, compliance, and operational workflows. Solutions are mapped to business processes, ensuring seamless automation, integration, and scalability across functions."}</p>

                                                    <Link
                                                        href={"#"}
                                                        // rel={
                                                        //     service?.slug?.endsWith(".pdf")
                                                        //         ? "noopener noreferrer"
                                                        //         : undefined
                                                        // }
                                                        className="default-btn"
                                                    >
                                                        Read More
                                                        <i className="ri-arrow-right-line"></i>
                                                    </Link>
                                                </div>
                                            </motion.div>
                                        </Col>

                                    </Row>
                                </AccordionItemPanel>
                            </AccordionItem>
                        </Accordion>
                    </div>
                </div>
            </div>
        </>
    );
};

export default DigitalFaq;