ADD: Start of extraction of Project Card

Still WIP though
This commit is contained in:
webfussel 2025-06-02 07:40:21 +02:00
parent 4852fc45b0
commit aa4b3002c4
5 changed files with 43 additions and 46 deletions

View file

@ -0,0 +1,17 @@
<template>
<article class="Project">
</article>
</template>
<script setup lang="ts">
import type { Skill } from '~/utils/skills'
type Props = {
img : string
company : string
title : string
link ?: string
tech : Skill[]
}
</script>