f80a7189a0
* chore(fe2): upgrade to nuxt 3.8.2 * fix tailwind-theme build * readme update * removing storybook from fe2 :( * fix(fe2): codegen schema url resolution
23 lines
487 B
Vue
23 lines
487 B
Vue
<template>
|
|
<div>
|
|
<div class="bg-foundation p-4 flex flex-col gap-4 rounded-md shadow-md">
|
|
<ServerManagementCardRow
|
|
v-for="info in serverInfo"
|
|
:key="info.title"
|
|
:title="info.title"
|
|
:value="info.value"
|
|
:cta="info.cta"
|
|
:icon="info.icon"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import type { CardInfo } from '~~/lib/server-management/helpers/types'
|
|
|
|
defineProps<{
|
|
serverInfo: CardInfo[]
|
|
}>()
|
|
</script>
|