This commit is contained in:
Saahil dutta 2025-07-24 11:19:00 -04:00
parent 03bf0f8778
commit e577d87ce4
Signed by: neon
GPG key ID: 8A8B64515254CFC6
7 changed files with 94 additions and 7 deletions

View file

@ -1 +1,14 @@
<template>About who?</template>
<script lang="ts" setup>
import FeedbackCards from '~/components/FeedbackCards.vue';
let cards = [
{ id: 1, title: 'Card 1', text: 'First card', color: 'bg-base-100 text-primary-content' },
{ id: 2, title: 'Card 2', text: 'Second card', color: 'bg-base-100 text-primary-content' },
{ id: 3, title: 'Card 3', text: 'Third card', color: 'bg-base-100 text-primary-content' },
]
</script>
<template>
<div class="m-20">
<FeedbackCards :cards="cards" />
</div>
</template>