diff --git a/src/lib/ProjectCard/VendorGallery.svelte b/src/lib/ProjectCard/VendorGallery.svelte index 1695fec..d0d9511 100644 --- a/src/lib/ProjectCard/VendorGallery.svelte +++ b/src/lib/ProjectCard/VendorGallery.svelte @@ -4,9 +4,9 @@ export let vendors; -
+

built with

-
+
{#each vendors as vendor} {/each} diff --git a/src/lib/ProjectCard/VendorIcon.svelte b/src/lib/ProjectCard/VendorIcon.svelte index cba5c37..024d6e2 100644 --- a/src/lib/ProjectCard/VendorIcon.svelte +++ b/src/lib/ProjectCard/VendorIcon.svelte @@ -3,8 +3,7 @@ export let img; - -
- {name} -

{name}

-
+
+ {name} +

{name}

+
diff --git a/src/lib/images/vendorIcons/awsIcon.webp b/src/lib/images/vendorIcons/awsIcon.webp new file mode 100644 index 0000000..61ac400 Binary files /dev/null and b/src/lib/images/vendorIcons/awsIcon.webp differ diff --git a/src/lib/images/vendorIcons/goIcon.svg b/src/lib/images/vendorIcons/goIcon.svg new file mode 100644 index 0000000..f8dcbf4 --- /dev/null +++ b/src/lib/images/vendorIcons/goIcon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/lib/projects.js b/src/lib/projects.js index f60e6c5..c9dabfe 100644 --- a/src/lib/projects.js +++ b/src/lib/projects.js @@ -7,8 +7,47 @@ import nextjsIcon from '$lib/images/vendorIcons/nextjsIcon.svg'; import drizzleIcon from '$lib/images/vendorIcons/drizzleIcon.webp'; import zustandIcon from '$lib/images/vendorIcons/zustandIcon.png'; import shadcnIcon from '$lib/images/vendorIcons/shadcnIcon.png'; +import goIcon from '$lib/images/vendorIcons/goIcon.svg'; +import awsIcon from '$lib/images/vendorIcons/awsIcon.webp'; export const projects = [ + { + category: 'nextjs', + title: 'Software Jobs', + url: '', + description: + "I wanted an excuse to try out Go, and I also want to find a job. The scraper is built with Go and the Colly package. It runs on a AWS EC2 instance, and the frontend is built with Next.js which is deployed to Vercel.", + repo: 'https://gitea.rannes.dev/rannes.dev/sw-jobs-go', + rss: 'https://gitea.rannes.dev/rannes.dev/sw-jobs-go.rss', + image: '', + vendors: [ + { + name: 'Go', + img: goIcon, + url: 'https://go.dev/' + }, + { + name: 'Next.js', + img: nextjsIcon, + url: 'https://nextjs.org/' + }, + { + name: 'Tailwind', + img: tailwindIcon, + url: 'https://tailwindcss.com/' + }, + { + name: 'Vercel', + img: vercelIcon, + url: 'https://vercel.com/' + }, + { + name: 'AWS', + img: awsIcon, + url: 'https://aws.amazon.com/' + } + ] + }, { category: 'svelte', title: 'Portfolio',