feat: init page, router, layout

This commit is contained in:
2026-08-12 22:15:06 +07:00
parent 593de37987
commit c75e412051
19 changed files with 2163 additions and 378 deletions
+18
View File
@@ -0,0 +1,18 @@
import PageHeader from '../components/PageHeader.jsx'
function ClassesPage() {
return (
<>
<PageHeader
title="Lop hoc"
description="Sap xep lop, lich hoc, giang vien va danh sach hoc vien."
/>
<section className="content-panel">
<h2>Lich lop hoc</h2>
<p>Khoi tao lich lop va trang thai diem danh tai day.</p>
</section>
</>
)
}
export default ClassesPage