import React from 'react'; import { motion, useReducedMotion } from 'framer-motion'; const fadeUpPreset = (delay = 0, duration = 1.2) => ({ initial: { opacity: 0, y: 20 }, whileInView: { opacity: 1, y: 0 }, viewport: { once: true, amount: 0.2 }, transition: { delay, duration, ease: "easeOut" } }); const Support = () => { const shouldReduce = useReducedMotion(); const supportOptions = [ { title: "PRINCIPAL SPONSORS", description: "Support us by becoming a sponsor. Your logo will show up here with a link to your website." }, { title: "GOLD SPONSORS", description: "Support us by becoming a sponsor. Your logo will show up here with a link to your website." }, { title: "SILVER SPONSORS", description: "Support us by becoming a sponsor. Your logo will show up here with a link to your website." }, { title: "BRONZE SPONSORS", description: "Support us by becoming a sponsor. Your logo will show up here with a link to your website." } ]; if (shouldReduce) { return (

Support us

Nest is an MIT-licensed open source project. It can grow thanks to the sponsors and support by the amazing backers.

{supportOptions.map((option, index) => (

{option.title}

{option.description}

Your logo here
))}
); } return (

Support us

Nest is an MIT-licensed open source project. It can grow thanks to the sponsors and support by the amazing backers.

{supportOptions.map((option, index) => (

{option.title}

{option.description}

Your logo here
))}
); }; export default Support;