Add complete React frontend with modern design and navigation

This commit is contained in:
Ryderjj89
2025-09-13 12:09:52 -04:00
parent fab87ca06b
commit 84f1dfaf23
12 changed files with 675 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
serif: ['Georgia', 'Times New Roman', 'serif'],
},
typography: {
DEFAULT: {
css: {
color: 'inherit',
a: {
color: 'inherit',
textDecoration: 'none',
},
},
},
},
},
},
plugins: [
require('@tailwindcss/typography'),
],
}