mirror of
https://github.com/unraid/api.git
synced 2026-01-05 08:00:33 -06:00
17 lines
310 B
Vue
17 lines
310 B
Vue
<script lang="ts" setup>
|
|
import 'tailwindcss/tailwind.css';
|
|
import '~/assets/main.css';
|
|
</script>
|
|
|
|
<template>
|
|
<div class="text-white font-semibold p-4 bg-orange-400 rounded-lg">
|
|
Launchpad.ce
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="postcss">
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
</style>
|