docs welcome page

This commit is contained in:
vcoppe
2024-07-10 19:19:12 +02:00
parent 44a4637e43
commit be8ca9c0ee
3 changed files with 44 additions and 6 deletions

View File

@@ -7,6 +7,15 @@ export const guides: Record<string, string[]> = {
'gpx': [],
};
export const guideIcons: Record<string, string> = {
"getting-started": "🚀",
"menu": "📂 ⚙️",
"files-and-stats": "🗂 📈",
"toolbar": "🧰",
"map-controls": "🗺",
"gpx": "💾",
};
export function getPreviousGuide(currentGuide: string): string | undefined {
let subguides = currentGuide.split('/');