"use client"; import { motion } from "framer-motion"; export default function TickerBar() { const items = [ "Free shipping on orders over 3000 RSD", "Natural ingredients", "Cruelty-free", "Handmade with love", ]; return (
{[...items, ...items, ...items, ...items].map((item, index) => ( {item} ))}
); }