Education page finished, improvements to carousel, placeholder content from old website

This commit is contained in:
2025-11-06 16:47:10 -08:00
parent d6e75ae2ea
commit 128dc14459
9 changed files with 190 additions and 6 deletions

6
src/interfaces/table.ts Normal file
View File

@@ -0,0 +1,6 @@
export interface tableData {
header: string[];
columnPadding?: number;
rowPadding?: number;
rows: Array<Array<any>>;
}