From 4bfb0c9ec6b09c9891792b96aedf9272184c7802 Mon Sep 17 00:00:00 2001 From: Ajax Davis Date: Wed, 17 Jul 2024 22:46:08 +1000 Subject: [PATCH] feat: added some integrations to homepage --- apps/homepage2/app/projects/page.js | 33 +++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/apps/homepage2/app/projects/page.js b/apps/homepage2/app/projects/page.js index dc2df8a..3eddc9a 100644 --- a/apps/homepage2/app/projects/page.js +++ b/apps/homepage2/app/projects/page.js @@ -7,6 +7,38 @@ export const metadata = { export default function GettingStarted() { const PROJECTS = [ + { + name: 'Reactive Resume', + description: + 'An open-source resume builder supporting JSON Resume schema with multiple templates.', + link: 'https://rxresu.me', + category: 'integration', + language: 'N/A', + }, + { + name: 'Social Network', + description: + 'A social network for developers to showcase their JSON Resume.', + link: 'https://www.social.network/', + category: 'integration', + language: 'N/A', + }, + { + name: 'Resumake', + description: + 'A web app that generates resumes based on JSON Resume schema.', + link: 'https://resumake.io', + category: 'integration', + language: 'N/A', + }, + { + name: 'Standard Resume', + description: + 'A web-based resume builder with support for importing JSON resumes.', + link: 'https://standardresume.co', + category: 'integration', + language: 'N/A', + }, { name: 'JSON Resume Validator (PHP)', description: @@ -372,6 +404,7 @@ export default function GettingStarted() { ]; const categories = [ + 'integration', 'framework', 'validator', 'hosting',