Replace the hello-world shell with the elevated design system, bilingual screens, recipe/extras data, and the interactive Mein Teller view. Co-authored-by: Cursor <cursoragent@cursor.com>
31 lines
1.0 KiB
HTML
31 lines
1.0 KiB
HTML
<!doctype html>
|
||
<html lang="de">
|
||
<head>
|
||
<meta charset="UTF-8" />
|
||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||
<meta
|
||
name="viewport"
|
||
content="width=device-width, initial-scale=1.0, viewport-fit=cover"
|
||
/>
|
||
<meta
|
||
name="description"
|
||
content="Pocket Pascal — decision aid for daily nutrition using Pascal’s building-block plate system."
|
||
/>
|
||
|
||
<!-- PWA / iOS -->
|
||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||
<meta name="mobile-web-app-capable" content="yes" />
|
||
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
|
||
<meta name="apple-mobile-web-app-title" content="Pocket Pascal" />
|
||
<meta name="theme-color" content="#fafaf7" />
|
||
<link rel="apple-touch-icon" href="/apple-touch-icon-180x180.png" />
|
||
<link rel="manifest" href="/manifest.webmanifest" />
|
||
|
||
<title>Pocket Pascal</title>
|
||
</head>
|
||
<body>
|
||
<div id="root"></div>
|
||
<script type="module" src="/src/main.tsx"></script>
|
||
</body>
|
||
</html>
|