Version 1.0 upload

This commit is contained in:
2025-04-08 00:05:15 +08:00
parent 2eff273486
commit 35378d17d0
38 changed files with 2096 additions and 598 deletions

View File

@@ -0,0 +1,12 @@
// pages/ClassroomsPage.ts
import { CenteredLayout } from '../layouts/CenteredLayout';
import { UnderConstructionWidget } from '../widgets/UnderConstructionWidget';
export const renderClassroomsPage = () => {
const layout = new CenteredLayout();
const underConstructionWidget = new UnderConstructionWidget("Classrooms is currently not yet ready for production.");
layout.addContent(underConstructionWidget.render());
document.querySelector<HTMLDivElement>('#app')?.appendChild(layout.render());
};