feat: initialize Nuxt official website

This commit is contained in:
2026-07-14 17:44:51 +08:00
commit 31522f05d5
45 changed files with 12920 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ['./components/**/*.{vue,js}', './pages/**/*.vue', './app.vue'],
theme: {
extend: {
colors: {
primary: 'rgb(48 121 255)',
ink: 'rgb(64 64 64)',
muted: 'rgb(153 153 153)'
},
fontFamily: {
sans: ['Source Han Sans', 'PingFang SC', 'Microsoft YaHei', 'Arial', 'sans-serif']
}
}
},
plugins: []
}