feat: institutional site dark mode

This commit is contained in:
Erik Silva
2025-12-07 03:06:48 -03:00
parent bf6707e746
commit 0ab52bcfe4
8 changed files with 410 additions and 436 deletions

View File

@@ -0,0 +1,9 @@
/** @type {import('tailwindcss').Config} */
const config = {
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
],
darkMode: "class",
};
module.exports = config;