import { motion } from "framer-motion"; import { Badge } from "@/components/ui/badge"; import { Card, CardContent } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import { UserPlus, ArrowRight } from "lucide-react"; import { useNavigate } from "react-router-dom"; import { ShimmerButton } from "./ui/shimmer-button"; const HireDeveloperSection = ({ title, description, developerTypes, buttonText, buttonLink, }) => { const navigate = useNavigate(); return (
{/* Header */}

{title}

{description}

{/* Developer Cards */} {developerTypes.map((dev, index) => (
{/* Sample SVG or icon can be customized */}
{dev.experience}

{dev.title}

{dev.specialties}

{dev.skills.map((skill) => ( {skill} ))}
))}
{/* Call-to-action */} navigate(buttonLink)}>
{buttonText}
); }; export default HireDeveloperSection;