import React from 'react'; import { motion, useReducedMotion } from 'framer-motion'; import { Users, Heart } from 'lucide-react'; function Community() { const shouldReduceMotion = useReducedMotion(); const fadeUpPreset = (delay = 0, duration = 0.8) => ({ initial: { opacity: 0, y: 20 }, whileInView: { opacity: 1, y: 0 }, viewport: { once: true, amount: 0.2 }, transition: { delay, duration, ease: "easeOut" } }); const communityImages = [ "https://react.dev/images/home/conf2021/andrew.jpg", "https://react.dev/images/home/conf2021/lauren.jpg", "https://react.dev/images/home/conf2021/juan.jpg", "https://react.dev/images/home/conf2021/rick.jpg" ]; if (shouldReduceMotion) { return (

Join a community of millions

You're not alone. Two million developers from all over the world visit the React docs every month. React is something that people and teams can agree on.

{communityImages.map((image, index) => (
{`Community
))}

This is why React is more than a library, an architecture, or even an ecosystem. React is a community. It's a place where you can ask for help, find opportunities, and meet new friends. You will meet both developers and designers, beginners and experts, researchers and artists, teachers and students. Our backgrounds may be very different, but React lets us all create user interfaces together.

Welcome to the React community

); } return (

Join a community of millions

You're not alone. Two million developers from all over the world visit the React docs every month. React is something that people and teams can agree on.

{communityImages.map((image, index) => ( {`Community ))}

This is why React is more than a library, an architecture, or even an ecosystem. React is a community. It's a place where you can ask for help, find opportunities, and meet new friends. You will meet both developers and designers, beginners and experts, researchers and artists, teachers and students. Our backgrounds may be very different, but React lets us all create user interfaces together.

Welcome to the React community

); } export default Community;