import React from 'react'; import Image from 'next/image'; const FeatureCard = ({ icon, title, description, hasBorder = true }) => (
{title}

{title}

{description}

); const WhyChooseUs = () => { const features = [ { icon: "/images/service/award.png", title: "Unmatched Quality", description: "Our ISO certification in DNA Sequencing, RNA Sequencing, and Genomics Informatics underscores our dedication to delivering superior technical advice and results that align seamlessly with research objectives and expected outcomes." }, { icon: "/images/service/execution.png", title: "Exceptional Value", description: "Our comprehensive NGS and bioinformatics services offer unbeatable value for money. We ensure that our pricing structure never stands in the way of your research goals." }, { icon: "/images/service/social-support.png", title: "Dedicated Support", description: "We prioritize your needs, offering prompt technical advice and support. Our fast response times and client-focused approach ensure your research stays on track." }, { icon: "/images/service/accurate.png", title: "Proven Reliability", description: "We guarantee timely, accurate results using the latest chemistry, instruments, and software, maintaining the highest standards in our analyses." } ]; return (

Why Choose Operify Tech?

{features.map((feature, index) => ( ))}
); }; export default WhyChooseUs;