'use client'; import hackathons from '@/data/hackathons.json'; import { buttonVariants } from '@components'; import { cn } from '@utils'; import Image from 'next/image'; import { HiOutlineCode } from 'react-icons/hi'; import { motion } from 'framer-motion'; export default function HackathonsPage() { const sortedHackathons = [...hackathons]; if (sortedHackathons.length === 0) { return (

No hackathon projects available yet.

); } return (
{sortedHackathons.map((hackathon, idx) => ( {hackathon.project_title}

{hackathon.project_title}

{hackathon.team_name}

{hackathon.description}

Lihat Proyek
))}
); }