Initial commit

This commit is contained in:
2026-01-15 07:26:08 +00:00
committed by GitHub
commit 3e9fc6e4e5
33 changed files with 12056 additions and 0 deletions

19
site/tailwind.config.js Normal file
View File

@@ -0,0 +1,19 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
app: {
900: '#5f4c7c',
800: '#9178bd',
700: '#b199da'
}
}
},
},
plugins: [],
}