Files
eatme/frontend/index.html
Michal Pemcak fffcb73ea4 Initial commit: EatMe attendance tracker
Google-SSO PWA for bistro employee clock-in/out, admin employee
management, and stats with CSV export. Express + SQLite backend,
React + Zustand frontend in the light-mono-tui design language.
Multi-stage Dockerfile, compose.yaml for image-based deploys, nginx
reverse-proxy template, and an OKF documentation bundle in docs/.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-08-16 18:41:11 +02:00

18 lines
684 B
HTML

<!doctype html>
<html lang="cs">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="Evidence docházky zaměstnanců bistra EatMe" />
<title>EatMe — Docházka</title>
<script src="https://accounts.google.com/gsi/client" async defer></script>
</head>
<body class="app">
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>