This commit is contained in:
Noble
2025-01-21 13:50:35 +01:00
commit def75904dd
42 changed files with 11651 additions and 0 deletions

21
cansat/tailwind.config.js Normal file
View File

@@ -0,0 +1,21 @@
import {heroui} from "@heroui/theme"
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./layouts/**/*.{js,ts,jsx,tsx,mdx}',
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
"./node_modules/@heroui/theme/dist/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
sans: ["var(--font-sans)"],
mono: ["var(--font-mono)"],
},
},
},
darkMode: "class",
plugins: [heroui()],
}