initial migration

This commit is contained in:
2025-12-28 23:28:31 +01:00
parent 1f99781458
commit 292975299d
284 changed files with 119466 additions and 0 deletions

34
tailwind.config.js Normal file
View File

@@ -0,0 +1,34 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./app/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
primary: {
DEFAULT: '#0117bf',
light: '#3d8c01',
dark: '#000a8a',
},
accent: {
DEFAULT: '#82ed20',
dark: '#6bc01a',
},
secondary: {
DEFAULT: '#263336',
light: '#3d4f53',
},
},
fontFamily: {
sans: ['Inter', 'system-ui', 'sans-serif'],
},
container: {
center: true,
padding: '1rem',
},
},
},
plugins: [],
}