import React from "react"; import { Tilt } from "react-tilt"; import { motion } from "framer-motion"; import { fadeIn, textVariant } from "src/utils/motion"; import { services } from "src/constans"; import { styles } from "src/style"; import { SectionWrapper } from "src/hoc"; import Image from "next/image"; import vector1 from "@img/Vector1.png"; const ServiceCard = ({ index, title, icon }) => (
{/* web-development */}

{title}

); const StressTest = () => { return (

B e Part of Our Stress Test{" "}

Be Part of Our Stress Test and try us as an early adapter
{services.map((service, index) => ( ))}
); }; export default SectionWrapper(StressTest, "StressTest");