mirror of
https://github.com/bartvdbraak/hellob.art.git
synced 2025-04-27 09:31:21 +00:00
feat: update project URLs in projects-item.svelte and projects.ts
This commit is contained in:
parent
18501bf914
commit
7e196ca621
2 changed files with 5 additions and 5 deletions
|
@ -1,5 +1,5 @@
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { Circle, ExternalLink, GithubLogo } from 'radix-icons-svelte';
|
import { Circle, GithubLogo, Globe } from 'radix-icons-svelte';
|
||||||
import { Calendar, Scale } from 'lucide-svelte';
|
import { Calendar, Scale } from 'lucide-svelte';
|
||||||
import * as Card from '$lib/components/ui/card';
|
import * as Card from '$lib/components/ui/card';
|
||||||
import type { Project } from '$lib/content/projects';
|
import type { Project } from '$lib/content/projects';
|
||||||
|
@ -42,13 +42,13 @@
|
||||||
{#if gitHubUrl || projectUrl}
|
{#if gitHubUrl || projectUrl}
|
||||||
<div class="flex items-center">
|
<div class="flex items-center">
|
||||||
{#if gitHubUrl}
|
{#if gitHubUrl}
|
||||||
<Button variant="ghost" size="icon" href={gitHubUrl}>
|
<Button variant="ghost" size="icon" href={gitHubUrl} target="_blank">
|
||||||
<GithubLogo />
|
<GithubLogo />
|
||||||
</Button>
|
</Button>
|
||||||
{/if}
|
{/if}
|
||||||
{#if projectUrl}
|
{#if projectUrl}
|
||||||
<Button variant="ghost" size="icon" href={projectUrl}>
|
<Button variant="ghost" size="icon" href={projectUrl} target="_blank">
|
||||||
<ExternalLink />
|
<Globe />
|
||||||
</Button>
|
</Button>
|
||||||
{/if}
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -65,7 +65,7 @@ const projects: Project[] = [
|
||||||
description:
|
description:
|
||||||
'Keyweave is an open-source tool crafted in Rust to seamlessly fetch secrets from Azure Key Vault and weave them into a convenient .env file.',
|
'Keyweave is an open-source tool crafted in Rust to seamlessly fetch secrets from Azure Key Vault and weave them into a convenient .env file.',
|
||||||
gitHubUrl: 'https://www.github.com/bartvdbraak/keyweave',
|
gitHubUrl: 'https://www.github.com/bartvdbraak/keyweave',
|
||||||
projectUrl: 'https://docs.rs/crate/keyweave/latest',
|
projectUrl: 'https://crates.io/crates/keyweave',
|
||||||
year: '2023',
|
year: '2023',
|
||||||
license: 'GPLv3',
|
license: 'GPLv3',
|
||||||
languages: [
|
languages: [
|
||||||
|
|
Loading…
Reference in a new issue