mirror of
https://github.com/kjanat/livedash-node.git
synced 2026-01-16 11:32:13 +01:00
Adds favicon and web manifest to improve the app's installability and appearance as a Progressive Web App (PWA). Also adds `.gitignore` entries for the parser output directories.
17 lines
358 B
HTML
17 lines
358 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Favicon Generator</title>
|
|
</head>
|
|
<body>
|
|
<div style="width: 64px; height: 64px">
|
|
<img src="favicon.svg" width="64" height="64" />
|
|
</div>
|
|
<script>
|
|
setTimeout(() => {
|
|
console.log("This is just a placeholder for favicon generation");
|
|
}, 1000);
|
|
</script>
|
|
</body>
|
|
</html>
|