reveil/ui/src/routes/routines/+page.svelte

28 lines
633 B
Svelte

<script>
import {
Card,
Col,
Container,
Row,
Icon,
} from 'sveltestrap';
import CardRoutine from '../../components/CardRoutine.svelte';
</script>
<Container fluid class="flex-fill d-flex flex-column py-2">
<Row cols={{xs: 1, md: 2, lg: 3}}>
<Col class="mb-4">
<CardRoutine />
</Col>
<Col class="mb-4">
<Card
class="h-100 d-flex justify-content-center align-items-center fst-italic"
style="cursor: pointer; border-style: dashed;"
>
Ajouter une routine &hellip;
</Card>
</Col>
</Row>
</Container>