feat: add four new student modules (rotation, skill-video, exam-prep, academic) with backend APIs and frontend pages; add exam-prep question history with DB persistence

This commit is contained in:
freedakgmail
2026-06-04 11:50:25 +08:00
commit 995f4ecfbd
399 changed files with 73529 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
import type { Config } from 'tailwindcss';
const config: Config = {
content: ['./src/**/*.{ts,tsx}'],
theme: {
extend: {
colors: {
brand: {
50: '#eef6ff',
100: '#d9eaff',
200: '#bcd9ff',
300: '#8ec1ff',
400: '#599dff',
500: '#3377f5',
600: '#1f59db',
700: '#1a47b0',
800: '#1b3e8c',
900: '#1c386f',
},
},
},
},
plugins: [],
};
export default config;