import { CheckCircle2 } from “lucide-react”; export const About = () => { const benefits = [ “Curated daily by product experts”, “All items under $30 – budget-friendly”, “Real reviews from verified purchases”, “Fast shipping with Amazon Prime”, ]; return (

Why Trust Our Recommendations?

We personally test and review hundreds of products to bring you only the best budget-friendly finds that actually improve your daily life.

{benefits.map((benefit, index) => (
{benefit}
))}
); };