File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed
Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change 1+ import { AppGitHubGenericMarkdown } from "@/components/libresplit/AppGitHubGenericMarkdown" ;
2+
3+ export function Themes ( ) {
4+ return (
5+ < div >
6+ < AppGitHubGenericMarkdown url = "https://raw.githubusercontent.com/LibreSplit/LibreSplit/refs/heads/main/docs/themes.md" />
7+ </ div >
8+ ) ;
9+ }
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import { Home } from "./app/home";
44import { NotFound } from "./app/not-found" ;
55import { SettingsKeybinds } from "./app/settings-keybinds" ;
66import { SplitFiles } from "./app/split-files" ;
7+ import { Themes } from "./app/themes" ;
78import { Route , Routes } from "react-router" ;
89
910export default function AppRouter ( ) {
@@ -16,6 +17,7 @@ export default function AppRouter() {
1617 < Route path = "/docs/auto-splitters.md" element = { < AutoSplitters /> } />
1718 < Route path = "/docs/settings-keybinds.md" element = { < SettingsKeybinds /> } />
1819 < Route path = "/docs/split-files.md" element = { < SplitFiles /> } />
20+ < Route path = "/docs/themes.md" element = { < Themes /> } />
1921
2022 { /* Fall back on app's 404 page. This is because of the SPA routing trick with 404.html used in GitHub Pages. */ }
2123 < Route path = "*" element = { < NotFound /> } />
You can’t perform that action at this time.
0 commit comments