ADD: Start of extraction of Project Card
Still WIP though
This commit is contained in:
parent
4852fc45b0
commit
aa4b3002c4
5 changed files with 43 additions and 46 deletions
17
app/components/Project.vue
Normal file
17
app/components/Project.vue
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue