Files
speckle-server/packages/frontend-2/components/workspaces/Promo/Card.vue
T
andrewwallacespeckle 5b51e3b1be feat(fe2) Implement workspaces explainer page (#2735)
* Workspaces Page

* Add NuxtImg

* New designs

* Navigate on success option

* Add sidebar item

* Fix capitalisation

* Use CommonCard
2024-08-23 11:13:50 +01:00

18 lines
438 B
Vue

<template>
<div class="flex flex-col border border-outline-3 rounded-lg pt-6 px-8 pb-10 h-full">
<slot name="icon" />
<div class="flex flex-col mt-4">
<h5 class="text-foreground text-heading-sm">{{ title }}</h5>
<p class="text-body-xs text-foreground-2">
{{ description }}
</p>
</div>
</div>
</template>
<script setup lang="ts">
defineProps<{
title: string
description: string
}>()
</script>