2 Commits

12 changed files with 2373 additions and 56 deletions

18
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,18 @@
{
"files.associations": {
"*.css": "tailwindcss"
},
"editor.quickSuggestions": {
"strings": "on"
},
"tailwindCSS.classAttributes": [
"class",
"ui"
],
"tailwindCSS.experimental.classRegex": [
[
"ui:\\s*{([^)]*)\\s*}",
"(?:'|\"|`)([^']*)(?:'|\"|`)"
]
]
}

View File

@@ -0,0 +1 @@
shamefully-hoist=true

View File

@@ -0,0 +1,2 @@
@import "tailwindcss";
@import "@nuxt/ui";

View File

@@ -0,0 +1,13 @@
<script setup lang="ts">
</script>
<template>
<UFooter id="site-footer">
<template #left>
<SiteFooterCopyright />
</template>
<template #right>
<SiteFooterCredits />
</template>
</UFooter>
</template>

View File

@@ -0,0 +1,5 @@
<template>
<div>
© {{ new Date().getFullYear() }}
</div>
</template>

View File

@@ -0,0 +1,6 @@
<template>
<div class="flex items-center gap-1">
Fait avec <UIcon name="i-lucide-heart" /> par
<ULink href="https://websimple.com" target="_blank" external title="Site web développé par Websimple">Websimple</ULink>
</div>
</template>

View File

@@ -0,0 +1,7 @@
<script setup lang="ts">
const title = "Moonshine";
</script>
<template>
<UHeader :title="title" />
</template>

View File

@@ -1,8 +1,13 @@
<script setup lang="ts"> <script setup lang="ts">
import { fr } from "@nuxt/ui/locale";
</script> </script>
<template> <template>
<div id="layout-default"> <UApp id="layout-default" :locale="fr">
<NuxtPage /> <SiteHeader />
</div> <UMain>
<slot />
</UMain>
<SiteFooter />
</UApp>
</template> </template>

View File

@@ -2,7 +2,5 @@
</script> </script>
<template> <template>
<div id="page-node-from-uri"> <div id="page-node-from-uri" />
<h1>Moonshine</h1>
</div>
</template> </template>

View File

@@ -3,10 +3,23 @@ export default defineNuxtConfig({
modules: [ modules: [
"@nuxt/eslint", "@nuxt/eslint",
"@nuxt/ui",
], ],
components: {
dirs: [
{ path: "~/components", pathPrefix: false },
],
},
devtools: { enabled: true }, devtools: { enabled: true },
css: ["~/assets/css/_main.css"],
ui: {
colorMode: false,
},
compatibilityDate: "2026-01-01", compatibilityDate: "2026-01-01",
eslint: { eslint: {
@@ -20,5 +33,4 @@ export default defineNuxtConfig({
}, },
}, },
}, },
}); });

View File

@@ -14,14 +14,18 @@
"release": "pnpm lint && changelogen --noAuthors --release --push" "release": "pnpm lint && changelogen --noAuthors --release --push"
}, },
"dependencies": { "dependencies": {
"@iconify-json/lucide": "^1.2.84",
"@nuxt/ui": "4.3.0",
"nuxt": "^4.2.2", "nuxt": "^4.2.2",
"tailwindcss": "^4.1.18",
"vue": "^3.5.26", "vue": "^3.5.26",
"vue-router": "^4.6.4" "vue-router": "^4.6.4"
}, },
"devDependencies": { "devDependencies": {
"@nuxt/eslint": "^1.12.1", "@nuxt/eslint": "^1.12.1",
"changelogen": "^0.6.2", "changelogen": "^0.6.2",
"eslint": "^9.39.2" "eslint": "^9.39.2",
"typescript": "^5.9.3"
}, },
"changelog": { "changelog": {
"types": { "types": {

File diff suppressed because it is too large Load Diff