feat: add keyweave to projects page

This commit is contained in:
Bart van der Braak 2023-11-16 16:39:32 -08:00
parent afbcaade6e
commit 0d389531c8
5 changed files with 21 additions and 3 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 232 KiB

View file

Before

Width:  |  Height:  |  Size: 696 KiB

After

Width:  |  Height:  |  Size: 696 KiB

View file

@ -1,9 +1,11 @@
import videowallImage from '$lib/assets/projects/videowall.jpeg';
import videowallImage from '$lib/assets/projects/videowall.jpg';
import videowallLogo from '$lib/assets/projects/videowall-logo.png';
import ticketDashboardImage from '$lib/assets/projects/ticketdashboard.png';
import ticketDashboardLogo from '$lib/assets/projects/triple-logo.png';
import zaantjeImage from '$lib/assets/projects/zaantje.png';
import zaantjeLogo from '$lib/assets/projects/zaantje-logo.png';
import keyweaveImage from '$lib/assets/projects/keyweave-terminal.jpg';
import keyweaveLogo from '$lib/assets/projects/keyweave-logo.png';
export {
videowallImage,
@ -11,5 +13,7 @@ export {
ticketDashboardImage,
ticketDashboardLogo,
zaantjeImage,
zaantjeLogo
zaantjeLogo,
keyweaveImage,
keyweaveLogo
};

View file

@ -4,7 +4,9 @@ import {
videowallImage,
videowallLogo,
zaantjeImage,
zaantjeLogo
zaantjeLogo,
keyweaveImage,
keyweaveLogo
} from './projects-assets';
interface Contributor {
@ -24,6 +26,18 @@ export interface Project {
}
const projects: Project[] = [
{
link: 'https://github.com/bartvdbraak/keyweave',
headerImage: keyweaveImage,
headerSubTitle: 'Open Source Project',
title: 'Keyweave',
description: `Keyweave is an open-source tool crafted to seamlessly fetch secrets from Azure Key Vault
and weave them into a convenient .env file. Developed in Rust, Keyweave stands out for its efficiency
and user-friendly design, making it an ideal choice for managing your application's secrets.`,
logo: keyweaveLogo,
contributors: [],
date: '2023'
},
{
headerImage: videowallImage,
headerSubTitle: 'Private Project',