import React from "react"; import { Tilt } from "react-tilt"; import { motion } from "framer-motion"; import { github } from "src/assets"; import { SectionWrapper } from "src/hoc"; import { fadeIn, textVariant } from "src/utils/motion"; import { styles } from "src/style"; import { projects } from "src/constans"; const ProjectCard = ({ index, name, description, tags, image, source_code_link, }) => { return (
project_image
window.open(source_code_link, "_blank")} className="black-gradient w-10 h-10 rounded-full flex justify-center items-center cursor-pointer" > source code

{name}

{description}

{tags.map((tag) => (

#{tag.name}

))}
); }; const Works = () => { return ( <>

My work

Projects.

Following projects showcases my skills and experience through real-world examples of my work. Each project is briefly described with links to code repositories and live demos in it. It reflects my ability to solve complex problems, work with different technologies, and manage projects effectively.
{projects.map((project, index) => ( ))}
); }; export default SectionWrapper(Works, "");