Remove Respond.js polyfill and add new boilerplate CSS, browser config, and impressum page. Introduce index page and Mett calculator functionality with associated JavaScript files. Update styles for responsive design and include favicon links in HTML.
Deploy Website / deploy (push) Successful in 2s

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
Florian Otto
2026-04-28 20:23:06 +02:00
co-authored by Copilot
parent 81005571ea
commit 9ae7a0f0ec
10 changed files with 419 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<title>Dein Burgerrechner</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
padding: 50px;
background-color: #221600;
color: orange;
}
h1 {
color: tomato;
}
</style>
</head>
<body>
<h1>Die Burger werden noch gewendet ...</h1>
<p>Wir arbeiten daran, Ihnen etwas Großartiges zu bieten. Bitte schauen Sie bald wieder vorbei!</p>
<p><img src="burgerrechner.svg" alt="Logo Burgerrechner" width="33%"></p>
</body>
</html>