new project cards with modals!

This commit is contained in:
Tabby 2025-04-23 21:32:06 +10:00
parent 99c911c5d4
commit d33022ac09
7 changed files with 316 additions and 11 deletions

27
pages/TestPage.vue Normal file
View file

@ -0,0 +1,27 @@
<template>
<div>
<ProjectCardV2
title="Arcane Raiders but really really long"
description="Cool game"
:buttons='[
{ link: "https://tabbycat.dev", text: "tabbycat.dev" },
{ link: "https://www.linkedin.com/in/tom--howarth/", text: "Linkedin" },
{ link: "https://bsky.app/profile/tabbycat.dev", text: "Bluesky" },
{ link: "https://tabby-cat-nya.itch.io/", text: "Itch.io" }
]'
/>
<!-- <BoldButton
text="test"
href="hello"
/> -->
</div>
</template>
<script lang="ts" setup>
</script>
<style>
</style>