feat: Refactor project structure and add new files
Deploy Website / deploy (push) Successful in 3s

- Removed old style.css and added boilerplate.css for better cross-browser compatibility.
- Introduced browserconfig.xml for Microsoft tile support.
- Created impressum.php and index.php for main application pages.
- Added info.php for PHP info display.
- Implemented mett.js and mett.min.js for Mett calculation functionality.
- Included respond.min.js for media query support in older browsers.
- Recreated style.css with responsive design features.
- Added index.html as a landing page with a placeholder message.
This commit is contained in:
Florian Otto
2026-04-28 20:23:19 +02:00
parent ab79484b36
commit 04f8ac9bb6
11 changed files with 29 additions and 0 deletions
View File
View File
View File
View File
View File
View File
View File
+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 Nudelrechner</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
padding: 50px;
background-color: #fdbf5b;
color: #984069;
}
h1 {
color: #182132;
}
</style>
</head>
<body>
<h1>Die Nudeln werden noch gekocht ...</h1>
<p>Wir arbeiten daran, Ihnen etwas Großartiges zu bieten. Bitte schauen Sie bald wieder vorbei!</p>
<p><img src="nudelrechner.svg" alt="Logo Nudelrechner" width="33%"></p>
</body>
</html>