Compare commits

..

2 Commits

21
.gitignore vendored

@ -0,0 +1,21 @@
# macOS system files
.DS_Store
.AppleDouble
.LSOverride
# Thumbnails
._*
# Icon files
Icon?
# Editor directories and files
.idea/
.vscode/
*.swp
*.swo
# Node.js / build directories (falls du Node/webpack/etc. nutzt)
node_modules/
dist/
build/

@ -1,5 +1,5 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="de"> <html lang="de" style="background-color: black;">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
@ -9,10 +9,12 @@
<link href="https://fonts.googleapis.com/css2?family=Kanit:wght@200&display=swap" rel="stylesheet"> <link href="https://fonts.googleapis.com/css2?family=Kanit:wght@200&display=swap" rel="stylesheet">
<style> <style>
body { body {
h1, a { h1, a, h2, h3, h4, p {
font-family: "Kanit", sans-serif; font-family: "Kanit", sans-serif;
font-weight: 200; font-weight: 200;
font-style: normal; font-style: normal;
color: rgb(134, 166, 182);
text-decoration: none;
} }
} }
</style> </style>
@ -20,7 +22,11 @@
<body> <body>
<div style="background-color: black; color: white; height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;"> <div style="background-color: black; color: white; height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;">
<img src="images/zielke.studio.logo.white.png" alt="Zielke Studio Logo" style="max-width: 300px; height: auto; margin-bottom: 20px;"> <img src="images/zielke.studio.logo.white.png" alt="Zielke Studio Logo" style="max-width: 300px; height: auto; margin-bottom: 20px;">
<h1 style="font-size: 3em; margin: 0;">Coming Soon</h1> <h1 style="font-size: 2.5em; margin: 0; color: wheat;">STARTING 2026</h1>
<h2 style="font-size: 1.8em; margin: 0; margin-top: -1.4rem; color: gray;">INNOVATION AWAITS</h2>
<p style="text-align: left; color: white;">
<a href="mailto:info@zielke.studio">info@zielke.studio</a> | <a href="tel:">0151-12345678</a>
</p>
<a href="https://www.samuelzielke.de" style="position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); font-size: 0.8em; color: grey; text-decoration: none;">Impressum</a> <a href="https://www.samuelzielke.de" style="position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); font-size: 0.8em; color: grey; text-decoration: none;">Impressum</a>
</div> </div>
</body> </body>

Loading…
Cancel
Save

Powered by TurnKey Linux.