Compare commits
4 Commits
9d1c87f3f9
...
348b9b0d84
| Author | SHA1 | Date | |
|---|---|---|---|
| 348b9b0d84 | |||
| 593904097c | |||
| b45745b818 | |||
| 3b94500175 |
@@ -1,2 +1,6 @@
|
||||
@import "tailwindcss";
|
||||
@import "@nuxt/ui";
|
||||
@import "@nuxt/ui";
|
||||
|
||||
@theme {
|
||||
--font-sans: 'Public Sans', sans-serif;
|
||||
}
|
||||
@@ -1,5 +1,6 @@
|
||||
<script setup lang="ts">
|
||||
import type { NavigationMenuItem } from '@nuxt/ui'
|
||||
//import Logo from '@nuxt/ui'
|
||||
|
||||
|
||||
const items: NavigationMenuItem[][] = [[{
|
||||
@@ -41,7 +42,7 @@ const items: NavigationMenuItem[][] = [[{
|
||||
<template>
|
||||
<UDashboardSidebar collapsible resizable :ui="{ footer: 'border-t border-default' }">
|
||||
<template #header="{ collapsed }">
|
||||
<Logo v-if="!collapsed" class="h-5 w-auto shrink-0" />
|
||||
<UIcon v-if="!collapsed" name="i-simple-icons-nuxtdotjs" class="h-5 w-auto shrink-0" />
|
||||
<UIcon v-else name="i-simple-icons-nuxtdotjs" class="size-5 text-primary mx-auto" />
|
||||
</template>
|
||||
|
||||
|
||||
@@ -5,12 +5,20 @@
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<UContainer>
|
||||
<div class="mt-1 mb-2 flex flex-col w-full">
|
||||
<ProseH2 class="text-center m-0.5 w-full">Hey there, user!</ProseH2>
|
||||
<ProseP class="text-center text-muted m-0.5">Welcome to the UI!</ProseP>
|
||||
<UBadge variant="subtle" class="inline mx-auto">Something like that</UBadge>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="w-full flex flex-col">
|
||||
|
||||
</div>
|
||||
</UContainer>
|
||||
</template>
|
||||
|
||||
<style>
|
||||
<style scoped>
|
||||
|
||||
|
||||
</style>
|
||||
@@ -4,11 +4,11 @@ import tailwindcss from "@tailwindcss/vite";
|
||||
export default defineNuxtConfig({
|
||||
compatibilityDate: '2025-07-15',
|
||||
devtools: {enabled: true},
|
||||
css: ['./app/assets/css/global.css'],
|
||||
css: ['./app/assets/css/global.css' ],
|
||||
modules: ['@nuxt/image', '@nuxt/ui', '@nuxt/test-utils', '@nuxtjs/mdc'],
|
||||
vite: {
|
||||
plugins: [
|
||||
tailwindcss(),
|
||||
tailwindcss()
|
||||
],
|
||||
},
|
||||
})
|
||||
Reference in New Issue
Block a user