import { SquareArrowOutUpRight } from 'lucide-react'; import { url } from 'node:inspector'; {/* Effect Playing Contest 2025 Broadcast Develop today.isangjeong */} const projects = [ { name: 'EPC 2025 Broadcast Manager', url: 'https://www.youtube.com/@adofaigg', desc: '얼불춤 끼얏호우', detail: '달성이 주관하고 ADOFAI.gg가 공동 주최하는 Effect Playing Contest 2025 방송 화면의 대부분의 기능을 개발하였습니다.', tags: ['React', 'ElysiaJS'], }, { name: 'NYL', url: 'https://nyl.ny64.kr', desc: '상위 호환', detail: '전국의 중고등학교의 시간표와 급식을 쉽게 확인할 수 있는 앱을 유지보수하고 있습니다.', tags: ['React Native', 'ElysiaJS'] } ]; export default function Projects() { return ( {projects.map((project, idx) => ( {project.url ? ( {project.name} ) : ( {project.name} )} {project.desc} {project.detail} {project.tags.map((tag, i) => ( {tag} ))} ))} ); }
{project.detail}