Skip to content

Commit 19345dd

Browse files
committed
Add project tags support (Startup, Open Source)
1 parent a991e91 commit 19345dd

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

src/routes/projects/+page.svelte

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
description: 'A SaaS platform for company financials and stock market analytics integrated with advanced agentic AI capabilities.',
2424
tech: ["Next.js", "Python", "Tailwind", "Google Cloud", "LangChain DeepAgents", "LangFuse"],
2525
link: 'https://quantvision.ai',
26+
tags: ['Startup'],
2627
status: 'To Be Released'
2728
},
2829
] as project, i}
@@ -46,6 +47,18 @@
4647
<p class="leading-relaxed mb-4" style="color: var(--color-text-on-box); opacity: 0.85">
4748
{project.description}
4849
</p>
50+
{#if project.tags && project.tags.length > 0}
51+
<div class="flex flex-wrap gap-2 mb-3">
52+
{#each project.tags as tag}
53+
<span
54+
class="px-3 py-1 rounded-full text-xs font-semibold"
55+
style="background: var(--color-text-on-box); color: var(--color-box); opacity: 0.9"
56+
>
57+
{tag}
58+
</span>
59+
{/each}
60+
</div>
61+
{/if}
4962
<div class="flex flex-wrap gap-2 mb-4">
5063
{#each project.tech as tech}
5164
<span

0 commit comments

Comments
 (0)