Add hunt detail

This commit is contained in:
2025-08-01 01:14:34 +02:00
parent 15f4f74cb7
commit 28b42762fe
17 changed files with 597 additions and 49 deletions
+33 -1
View File
@@ -8,7 +8,7 @@ export default defineNuxtConfig({
'nuxt-auth-utils',
'@nuxtjs/i18n',
'@nuxtjs/tailwindcss',
'@prisma/nuxt'
'@vuestic/nuxt'
],
prisma: {
generateClient: false
@@ -32,5 +32,37 @@ export default defineNuxtConfig({
langDir: 'lang',
restructureDir: 'app',
baseUrl: 'https://pichunt.syma.dev'
},
tailwindcss: {
config: {
theme: {
extend: {
colors: {
primary: '#154EC1',
secondary: '#767C88',
success: '#3D9209',
info: '#158DE3',
danger: '#E42222',
warning: '#FFD43A',
backgroundPrimary: '#f6f6f6',
backgroundSecondary: '#FFFFFF',
backgroundElement: '#ECF0F1',
backgroundBorder: '#DEE5F2',
textPrimary: '#262824',
textInverted: '#FFFFFF',
shadow: 'rgba(0, 0, 0, 0.12)',
focus: '#49A8FF',
transparent: 'rgba(0, 0, 0, 0)'
},
screens: {
xs: '0px',
sm: '640px',
md: '1024px',
lg: '1440px',
xl: '1920px'
}
}
}
}
}
});