mirror of
https://github.com/bartvdbraak/hellob.art.git
synced 2025-04-26 17:11:21 +00:00
feat: add keyweave to projects page
This commit is contained in:
parent
afbcaade6e
commit
0d389531c8
5 changed files with 21 additions and 3 deletions
BIN
src/lib/assets/projects/keyweave-logo.png
Executable file
BIN
src/lib/assets/projects/keyweave-logo.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 54 KiB |
BIN
src/lib/assets/projects/keyweave-terminal.jpg
Normal file
BIN
src/lib/assets/projects/keyweave-terminal.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 232 KiB |
Before Width: | Height: | Size: 696 KiB After Width: | Height: | Size: 696 KiB |
|
@ -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
|
||||
};
|
||||
|
|
|
@ -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',
|
||||
|
|
Loading…
Reference in a new issue