29 lines
1000 B
HTML
29 lines
1000 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/icon.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.0, user-scalable=yes" />
|
|
<meta name="theme-color" content="#667eea" />
|
|
<meta name="description" content="Modern task management app" />
|
|
|
|
<!-- PWA Configuration -->
|
|
<link rel="manifest" href="/manifest.json" />
|
|
<link rel="apple-touch-icon" href="/icon.svg" />
|
|
|
|
<!-- iOS Specific -->
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
|
|
<meta name="apple-mobile-web-app-title" content="Tasko" />
|
|
|
|
<!-- Android -->
|
|
<meta name="mobile-web-app-capable" content="yes" />
|
|
|
|
<title>✓ Tasko - Task Manager</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.jsx"></script>
|
|
</body>
|
|
</html>
|