Files
todo/frontend/index.html
almazlar 52f29038d8
All checks were successful
Release and Build Docker Images / release-and-build (push) Successful in 1m28s
feat: add custom favicon and update page title
2026-02-21 11:14:10 +03:00

14 lines
363 B
HTML

<!doctype html>
<html lang="en">
<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" />
<title>To-Do Tasks</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>