import { motion } from 'framer-motion'; import type { LucideIcon } from 'lucide-react'; function SellingPointIcon({ icon: Icon }: { icon: LucideIcon }) { return (
); } function SellingPoint({ title, description, bgImage, }: { title: string; description: React.ReactNode; bgImage: string; }) { return (

{title}

{description}

); } export { SellingPoint, SellingPointIcon };