import { motion } from "framer-motion"; import { Github, ExternalLink, Play } from "lucide-react"; import { PROJECTS } from "../constants"; const Freelancing = () => { // Filter only Dodge AI and Mantis projects const freelancingProjects = PROJECTS.filter( project => project.title.includes("Dodge") || project.title.includes("Mantis") ); return (

Freelancing AT MIT USA

{freelancingProjects.map((project, index) => (
{(project.image || project.video) && (
{project.video ? (
)}

{project.title}

{project.description}

{project.techStack.map((tech, i) => ( {tech} ))}
{project.github && project.github !== "#" && ( GitHub )} {project.demo && project.demo !== "#" && ( Demo )} {project.video && ( Video )}
))}
); }; export default Freelancing;