Adding license generation functionality

This commit is contained in:
Muluhabt
2026-07-29 16:53:50 +03:00
parent 26cc1f4fd2
commit 5161e278ce
102 changed files with 5995 additions and 21326 deletions

View File

@@ -13,7 +13,9 @@ const loadPreferences = (): PreferencesState => {
const stored = localStorage.getItem(PREFERENCES_KEY);
if (stored) return JSON.parse(stored);
} catch {}
return { layoutMode: 'top' };
// The sidebar is the grouped, scannable layout; the top strip puts all
// ~20 destinations in one horizontally-scrolling row.
return { layoutMode: 'sidebar' };
};
const savePreferences = (state: PreferencesState) => {