Compare commits

...

2 Commits

Author SHA1 Message Date
Flatlogic Bot
48b59943c9 v2 2025-09-30 14:04:42 +00:00
Flatlogic Bot
9f5292305b v1 2025-09-30 14:02:05 +00:00

View File

@ -18,8 +18,8 @@ $now = date('Y-m-d H:i:s');
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" rel="stylesheet"> <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" rel="stylesheet">
<style> <style>
:root { :root {
--bg-color-start: #6a11cb; --bg-color-start: #4B0082;
--bg-color-end: #2575fc; --bg-color-end: #8A2BE2;
--text-color: #ffffff; --text-color: #ffffff;
--card-bg-color: rgba(255, 255, 255, 0.01); --card-bg-color: rgba(255, 255, 255, 0.01);
--card-border-color: rgba(255, 255, 255, 0.1); --card-border-color: rgba(255, 255, 255, 0.1);
@ -64,30 +64,6 @@ $now = date('Y-m-d H:i:s');
-webkit-backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1); box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
} }
.loader {
margin: 1.25rem auto 1.25rem;
width: 48px;
height: 48px;
border: 3px solid rgba(255, 255, 255, 0.25);
border-top-color: #fff;
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
.hint {
opacity: 0.9;
}
.sr-only {
position: absolute;
width: 1px; height: 1px;
padding: 0; margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap; border: 0;
}
h1 { h1 {
font-size: 3rem; font-size: 3rem;
font-weight: 700; font-weight: 700;
@ -115,12 +91,8 @@ $now = date('Y-m-d H:i:s');
<body> <body>
<main> <main>
<div class="card"> <div class="card">
<h1>Analyzing your requirements and generating your website…</h1> <h1>Welcome!</h1>
<div class="loader" role="status" aria-live="polite" aria-label="Applying initial changes"> <p>This is your new landing page.</p>
<span class="sr-only">Loading…</span>
</div>
<p class="hint"><?= ($_SERVER['HTTP_HOST'] ?? '') === 'appwizzy.com' ? 'AppWiZZy' : 'Flatlogic' ?> AI is collecting your requirements and applying the first changes.</p>
<p class="hint">This page will update automatically as the plan is implemented.</p>
<p>Runtime: PHP <code><?= htmlspecialchars($phpVersion) ?></code> — UTC <code><?= htmlspecialchars($now) ?></code></p> <p>Runtime: PHP <code><?= htmlspecialchars($phpVersion) ?></code> — UTC <code><?= htmlspecialchars($now) ?></code></p>
</div> </div>
</main> </main>