feat(route): add new doc and apps routes

This commit is contained in:
Julien Oculi 2024-06-19 16:11:53 +02:00
parent c766a00980
commit 6134e9a6ec
3 changed files with 46 additions and 1 deletions

10
.vscode/settings.json vendored
View file

@ -28,7 +28,15 @@
],
"cssvar.enable": true,
"cssvar.files": ["./_fresh/*"],
"conventionalCommits.scopes": ["css", "config", "ui", "pwa", "api", "ux"],
"conventionalCommits.scopes": [
"css",
"config",
"ui",
"pwa",
"api",
"ux",
"route"
],
"[ignore]": {
"editor.defaultFormatter": "foxundermoon.shell-format"
}

24
routes/apps/index.tsx Normal file
View file

@ -0,0 +1,24 @@
export default function App() {
//TODO implement route
return (
<>
<p>
Filters ... - os [] [] [] - cohabit []
</p>
<h1>Apps - pour/de cohabit</h1>
<h2>Auto hébergées</h2>
<h3>Git</h3>
<h3>Redmine</h3>
<h3>PenPot</h3>
<h2>En ligne</h2>
<h3>Matrix</h3>
<h3>Peertube</h3>
<h2>En local/À installer</h2>
<h3>Element (lin, and, web, win, ...)</h3>
<h3>GitNext (and)</h3>
<h1>Apps coup de 💖</h1>
<h3>F-Droid</h3>
<section></section>
</>
)
}

13
routes/docs/index.tsx Normal file
View file

@ -0,0 +1,13 @@
export default function Doc() {
//TODO implement route
return (
<>
<h1>Docs</h1>
<h2>Tutoriels</h2>
- video 0 - text 0 ...
<h2>CheatSheet</h2>
- vim
<section></section>
</>
)
}