import { BadgeCheck } from "lucide-react"; import { motion } from "framer-motion"; import type { Messages } from "@/messages"; import AnimatedSection from "./AnimatedSection"; import SectionHeader from "./SectionHeader"; export default function WhyChooseSection({ t }: { t: Messages }) { return (
{t.why.items.map((item) => (

{item}

))}
); }