prepare layout

This commit is contained in:
kbe
2025-08-13 15:13:57 +02:00
parent f03aaf1927
commit 18ff5b9beb
12 changed files with 1105 additions and 123 deletions

25
tailwind.config.js Normal file
View File

@@ -0,0 +1,25 @@
/** @type {import('tailwindcss').Config} */
const { createThemes } = require('@shadcn/ui');
module.exports = {
content: [
'./app/**/*.{js,ts,jsx,tsx}',
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {},
},
plugins: [
createThemes({
light: {
background: '#ffffff',
foreground: '#171717',
},
dark: {
background: '#0a0a0a',
foreground: '#ededed',
},
}),
],
}