import { motion } from "framer-motion"; import { useInView } from "framer-motion"; import { useRef } from "react"; import { Leaf, Users, Award, TrendingUp } from "lucide-react"; const features = [ { icon: Leaf, title: "Sustainable Solutions", description: "Eco-friendly preservation methods that reduce food waste and environmental impact", }, { icon: Users, title: "Expert Team", description: "Decades of combined experience in agricultural science and food preservation", }, { icon: Award, title: "Proven Results", description: "Award-winning research published in leading scientific journals", }, { icon: TrendingUp, title: "Innovation First", description: "Cutting-edge techniques backed by rigorous scientific methodology", }, ]; export default function AboutSection() { const ref = useRef(null); const isInView = useInView(ref, { once: true, margin: "-100px" }); return (
ChopFresh International Logo

About ChopFresh International Pvt. Ltd.

Leading the way in produce hibernation research and sustainable food preservation solutions

{features.map((feature, index) => (

{feature.title}

{feature.description}

))}

Our Mission

At ChopFresh International, we're dedicated to revolutionizing how the world preserves and stores fresh produce. Through innovative hibernation techniques and cutting-edge research, we help reduce food waste, extend shelf life, and maintain nutritional value.

Our team of agricultural scientists and food preservation experts work tirelessly to develop sustainable solutions that benefit farmers, distributors, retailers, and consumers alike.

); }