Skip to content

Commit

Permalink
webapp/Landing: add demo notice
Browse files Browse the repository at this point in the history
  • Loading branch information
tharvik committed Jun 27, 2024
1 parent 99c347d commit 847d130
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion webapp/src/components/home/Landing.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div class="flex">
<div class="flex flex-col gap-4">
<ButtonsCard
class="mx-auto"
:buttons="List.of(['get started', () => emit('click')])"
Expand All @@ -18,12 +18,20 @@
</li>
</ul>
</ButtonsCard>

<IconCard title-placement="center" class="mx-auto">
<template #title> DEMO </template>
<template #content>
Training states &amp; custom tasks are not persisted
</template>
</IconCard>
</div>
</template>
<script lang="ts" setup>
import { List } from "immutable";
import ButtonsCard from "@/components/containers/ButtonsCard.vue";
import IconCard from "@/components/containers/IconCard.vue";
const emit = defineEmits<{
click: [];
Expand Down

0 comments on commit 847d130

Please sign in to comment.