Extract menu to a separate component

This commit is contained in:
2026-04-06 18:41:23 +02:00
parent 3258965bcc
commit 3c271e1632
3 changed files with 103 additions and 99 deletions

View File

@@ -8,7 +8,7 @@
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-title" content="Recipe">
<title>Recipe App - Modular</title>
<link rel="manifest" href="./manifest.webmanifest?v=20260406-58">
<link rel="manifest" href="./manifest.webmanifest?v=20260406-60">
<link rel="icon" type="image/png" sizes="192x192" href="./icons/icon-192.png">
<link rel="apple-touch-icon" href="./icons/apple-touch-icon.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
@@ -520,7 +520,7 @@
</div>
<script>
const APP_ASSET_VERSION = '20260406-58';
const APP_ASSET_VERSION = '20260406-60';
const APP_VERSION_STORAGE_KEY = 'recipe-app-asset-version';
const APP_VERSION_QUERY_KEY = 'appv';
@@ -554,7 +554,7 @@
})();
</script>
<script type="module">
const appVersion = window.__APP_ASSET_VERSION__ || '20260406-58';
const appVersion = window.__APP_ASSET_VERSION__ || '20260406-60';
const recoveryKey = `recipe-app-recovery-${appVersion}`;
function renderBootstrapError(message) {