const projects = [ { title: 'Lunar Design', href: 'https://github.com/DesignByLunar', category: { name: 'Organization', color: 'bg-indigo-100 text-indigo-800' }, description: 'American counterpart of the French-American duo making software that\'s out of this world.', }, { title: 'BlueJay', href: 'https://bluejay.one', category: { name: 'SaaS', color: 'bg-blue-100 text-blue-800' }, description: 'Amazing Ro-Tech solutions for everyone, completely free.', }, { title: 'Snacc.chat', href: 'https://snacc.chat', category: { name: 'CodeDay', color: 'bg-red-100 text-red-800' }, description: 'A social network made in 24 hours at CodeDay.', }, { title: 'SCP Mobile', href: 'https://github.com/jackmerrill/SCP-Mobile', category: { name: 'Project', color: 'bg-purple-100 text-purple-800' }, description: 'Mobile (iOS) app for the SCP Wiki. Made in 24 hours at CodeDay.', }, { title: 'Family Guy Quotes bot', href: 'https://github.com/jackmerrill/FamilyGuyQuotesBot', category: { name: 'Project', color: 'bg-purple-100 text-purple-800' }, description: 'Uses Discord slash commands to send random Family Guy quotes.', }, { title: 'OOFS', href: 'https://github.com/oofs-project/oofs', category: { name: 'Project', color: 'bg-purple-100 text-purple-800' }, description: 'Online Orientated File Storage. Made in 24 hours at CodeDay. Won Best in Show.', }, ] function classNames(...classes: any) { return classes.filter(Boolean).join(' ') } export default function Projects() { return (

Recent projects

Here's what I've been working on!

Current Job

UX Engineer / Web Developer for {' '} Merch .

{projects.map((project) => (
{project.category.name}

{project.title}

{project.description}

))}

Looking for more? Check my GitHub.

) }