Skip to content

Commit

Permalink
Added info page, still need more works
Browse files Browse the repository at this point in the history
  • Loading branch information
ShiinaKochiya committed Sep 4, 2024
1 parent c8a87c1 commit 2a702fe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions MSOC/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import Home from "./component/Home";
import Tournament from "./component/Tournament";
import About from "./component/About";
import Leaderboard from "./component/Leaderboard";
import Info from "./component/Info";

export default function App() {
return (
Expand All @@ -15,6 +16,7 @@ export default function App() {
<body>
<Routes>
<Route path="/" element={<Home />} />
<Route path="/info" element={<Info />} />
<Route path="/tournament" element={<Tournament />} />
<Route path="/about" element={<About />} />
<Route path="/leaderboard" element={<Leaderboard />} />
Expand Down
2 changes: 1 addition & 1 deletion MSOC/src/component/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default function Header() {
<a href="/" className="text-xl font-semibold leading-6 text-black">
Trang Chủ
</a>
<a href="/" className="text-xl font-semibold leading-6 text-black">
<a href="/info" className="text-xl font-semibold leading-6 text-black">
Thông Tin
</a>
<a href="/leaderboard" className="text-xl font-semibold leading-6 text-black">
Expand Down

0 comments on commit 2a702fe

Please sign in to comment.