'use client' import Image from 'next/image' import { motion } from 'framer-motion' export default function CertificationsSection() { const certifications = [ { id: 1, name: "FSSAI", image: "/certifications/Frame-1000003749.png", }, { id: 2, name: "ISO", image: "/certifications/Frame-1000003750.png", }, { id: 3, name: "GMP", image: "/certifications/Frame-1000003751.png", }, { id: 4, name: "HACCP", image: "/certifications/image-371-1.png", }, { id: 5, name: "FDA", image: "/certifications/image-375-1.png", }, { id: 6, name: "BRC", image: "/certifications/image-377-2.png", }, { id: 7, name: "Quality", image: "/certifications/image-92.png", } ] return (
{/* Section Header */}

Certified By

Our commitment to quality is validated by prestigious international certifications

{/* Certifications Row */} {certifications.map((cert, index) => (
{cert.name}

{cert.name}

))}
{/* Bottom Text */}

Trusted by industry leaders worldwide for our commitment to quality, safety, and excellence in food production.

) }