too much time on responsive, on to hooking up cms

This commit is contained in:
Jason Jordan
2025-08-04 14:16:42 -04:00
parent 0e44bd53e6
commit 181be7e16c
12 changed files with 109 additions and 88 deletions
+16 -1
View File
@@ -1,5 +1,20 @@
import fluid, { extract, screens, fontSize } from 'fluid-tailwind'
module.exports = {
// Define content paths for Tailwind CSS to scan for classes
content: {
files: [
'./src/components/**/*.{tsx}',
'./src/app/**/*.{tsx}',
],
extract, // Use the extract function from fluid-tailwind
},
theme: {
extend: {},
screens, // Integrate fluid-tailwind's screens for responsive breakpoints
fontSize, // Integrate fluid-tailwind's font sizes for fluid typography
},
};
plugins: [
fluid, // Include the fluid-tailwind plugin
],
};