feat: more projects

This commit is contained in:
Jack Merrill 2021-09-10 17:12:20 +00:00
parent c6174fab8d
commit d374d19a8a
2 changed files with 52 additions and 18 deletions

View File

@ -4,36 +4,48 @@
{
"id": "5aa0d634-c476-4ab2-9957-d364b66311b2",
"line": 4,
"version": 883,
"version": 1395,
"index": 217
},
{
"id": "01e112b0-3705-4b70-bf88-5b2716dd492d",
"line": 77,
"version": 883,
"index": 2943
"line": 80,
"version": 1395,
"index": 3234
}
],
"components/Projects.tsx": [
{
"id": "f1084f0b-cb32-4b05-b4a3-02d058b717b2",
"line": 9,
"version": 205,
"index": 299
"line": 15,
"version": 704,
"index": 512
},
{
"id": "57d95fae-f14a-4006-9f32-bbe9021aa156",
"line": 90,
"version": 1182,
"index": 3397
},
{
"id": "d35f19ba-4d8c-488b-8a38-a26540595f2d",
"line": 91,
"version": 1191,
"index": 3410
}
],
"pages/index.tsx": [
{
"id": "91f8cc38-eb3c-426c-ba37-749bb88281ac",
"line": 89,
"version": 1001,
"index": 3811
"id": "d3363946-0aa7-43f5-b2ee-bc23387ea7a5",
"line": 14,
"version": 1075,
"index": 609
},
{
"id": "d3363946-0aa7-43f5-b2ee-bc23387ea7a5",
"line": 13,
"version": 930,
"index": 519
"id": "91f8cc38-eb3c-426c-ba37-749bb88281ac",
"line": 90,
"version": 1075,
"index": 3777
}
]
}

View File

@ -18,11 +18,32 @@ const projects = [
href: 'https://snacc.chat',
category: { name: 'CodeDay', color: 'bg-red-100 text-red-800' },
description:
'Amazing Ro-Tech solutions for everyone, completely free.',
'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) {
function classNames(...classes: any) {
return classes.filter(Boolean).join(' ')
}
@ -39,7 +60,7 @@ export default function Projects() {
<p className="mt-3 text-lg text-gray-200 sm:mt-4">
UX Engineer / Web Developer for
{' '}
<a href="merch.co" className="text-blue-400 font-bold" target="_blank">
<a href="https://merch.co" className="text-blue-400 font-bold" target="_blank">
Merch
</a>
.
@ -68,6 +89,7 @@ export default function Projects() {
))}
</div>
</div>
<p className="w-full text-center font-bold py-6">Looking for more? <a className="text-blue-100" href="https://github.com/jackmerrill" target="_blank">Check my GitHub.</a></p>
</div>
)
}