mirror of
https://github.com/bartvdbraak/hellob.art.git
synced 2025-06-29 07:49:10 +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">
|
||||
import { Circle, ExternalLink, GithubLogo } from 'radix-icons-svelte';
|
||||
import { Circle, GithubLogo, Globe } from 'radix-icons-svelte';
|
||||
import { Calendar, Scale } from 'lucide-svelte';
|
||||
import * as Card from '$lib/components/ui/card';
|
||||
import type { Project } from '$lib/content/projects';
|
||||
|
@ -42,13 +42,13 @@
|
|||
{#if gitHubUrl || projectUrl}
|
||||
<div class="flex items-center">
|
||||
{#if gitHubUrl}
|
||||
<Button variant="ghost" size="icon" href={gitHubUrl}>
|
||||
<Button variant="ghost" size="icon" href={gitHubUrl} target="_blank">
|
||||
<GithubLogo />
|
||||
</Button>
|
||||
{/if}
|
||||
{#if projectUrl}
|
||||
<Button variant="ghost" size="icon" href={projectUrl}>
|
||||
<ExternalLink />
|
||||
<Button variant="ghost" size="icon" href={projectUrl} target="_blank">
|
||||
<Globe />
|
||||
</Button>
|
||||
{/if}
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue