import Layout from "@/components/Layout"; import { Button } from "@/components/ui/button"; import { Badge } from "@/components/ui/badge"; import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; import { Heart, Code, BookOpen, Globe } from "lucide-react"; import { useNavigate } from "react-router-dom"; export default function FoundationContribute() { const navigate = useNavigate(); return (
{/* Animated grid background */}
{/* Hero Section */}
Contribute

Make a Difference

Help us democratize technology through open source. Your contributions directly impact millions of developers worldwide.

{/* Ways to Contribute */}

Ways to Contribute

Write Code

Contribute code improvements, fixes, and new features to our projects.

Documentation

Help improve documentation to make projects more accessible to everyone.

Translations

Help us reach developers globally by translating content into your language.

Support Others

Help community members by answering questions and reviewing contributions.

); }