type Project = { name: string; url: string; description: string; techStack: string[]; }; export default function ProjectsComponents({ project }: { project: Project }) { return (

{project.name}

{project.description.split('\n').map((line, idx) => ( {line}
))}

{project.techStack.map((tech, idx) => ( {tech} ))}
); }