33 lines
810 B
Markdown
33 lines
810 B
Markdown
<script setup lang="ts">
|
|
import Layout from '../src/components/ui/Layout.vue'
|
|
import Card from '../src/components/ui/Card.vue'
|
|
import Spacer from '../src/components/ui/layout/Spacer.vue'
|
|
</script>
|
|
|
|
# Funkwhale design component library
|
|
|
|
## Contribute
|
|
|
|
- [Improve the component library](./contributing)
|
|
- [Found a bug? Report it here](https://dev.funkwhale.audio/funkwhale/funkwhale/-/issues/?sort=created_date&state=opened&label_name%5B%5D=Type%3A%3AUX%2FUI&first_page_size=20)
|
|
|
|
## Use
|
|
|
|
<Layout flex>
|
|
<Card to='using-components'
|
|
title="Components"
|
|
style="width:min-content"
|
|
/>
|
|
|
|
<Card to="using-color"
|
|
title="Colors"
|
|
style="width:min-content"
|
|
/>
|
|
|
|
<Card to="https://design.funkwhale.audio"
|
|
title="Designs" style="width:max-content">
|
|
Check out the design system on our Penpot.
|
|
</Card>
|
|
|
|
</Layout>
|