Compare commits

..

1 Commits

Author SHA1 Message Date
Flatlogic Bot
ccde60ba68 V1 2026-01-02 21:29:17 +00:00

281
index.php
View File

@ -1,150 +1,137 @@
<?php <!DOCTYPE html>
declare(strict_types=1); <html lang="fi">
@ini_set('display_errors', '1');
@error_reporting(E_ALL);
@date_default_timezone_set('UTC');
$phpVersion = PHP_VERSION;
$now = date('Y-m-d H:i:s');
?>
<!doctype html>
<html lang="en">
<head> <head>
<meta charset="utf-8" /> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>New Style</title> <title>Hydro-Premium: Autosi uusi aikakausi</title>
<?php <meta name="description" content="Emme vain pese autoasi. Me palautamme sen sielun. Suomen eksklusiivisin viimeistely.">
// Read project preview data from environment
$projectDescription = $_SERVER['PROJECT_DESCRIPTION'] ?? ''; <script src="https://cdn.tailwindcss.com"></script>
$projectImageUrl = $_SERVER['PROJECT_IMAGE_URL'] ?? '';
?> <link rel="preconnect" href="https://fonts.googleapis.com">
<?php if ($projectDescription): ?> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<!-- Meta description --> <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Lexend:wght@700;800&display=swap" rel="stylesheet">
<meta name="description" content='<?= htmlspecialchars($projectDescription) ?>' />
<!-- Open Graph meta tags --> <script src="https://unpkg.com/lucide@latest"></script>
<meta property="og:description" content="<?= htmlspecialchars($projectDescription) ?>" /> <script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/gsap.min.js"></script>
<!-- Twitter meta tags -->
<meta property="twitter:description" content="<?= htmlspecialchars($projectDescription) ?>" /> <style>
<?php endif; ?> body {
<?php if ($projectImageUrl): ?> background-color: #050505;
<!-- Open Graph image --> color: white;
<meta property="og:image" content="<?= htmlspecialchars($projectImageUrl) ?>" /> font-family: 'Inter', sans-serif;
<!-- Twitter image --> overflow-x: hidden;
<meta property="twitter:image" content="<?= htmlspecialchars($projectImageUrl) ?>" /> }
<?php endif; ?> .font-lexend { font-family: 'Lexend', sans-serif; }
<link rel="preconnect" href="https://fonts.googleapis.com"> .hero-bg {
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> background-image: radial-gradient(circle at center, #1a1a1a 0%, #050505 70%);
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" rel="stylesheet"> }
<style> .glass-morphism {
:root { background: rgba(255, 255, 255, 0.05);
--bg-color-start: #6a11cb; backdrop-filter: blur(10px);
--bg-color-end: #2575fc; -webkit-backdrop-filter: blur(10px);
--text-color: #ffffff; border: 1px solid rgba(255, 255, 255, 0.1);
--card-bg-color: rgba(255, 255, 255, 0.01); }
--card-border-color: rgba(255, 255, 255, 0.1); .electric-cyan-glow {
} box-shadow: 0 0 15px #00FFFF, 0 0 30px #00FFFF;
body { }
margin: 0; .liquid-reveal-char {
font-family: 'Inter', sans-serif; display: inline-block;
background: linear-gradient(45deg, var(--bg-color-start), var(--bg-color-end)); opacity: 0;
color: var(--text-color); transform: translateY(50px) scale(0.8) rotateZ(-15deg);
display: flex; filter: blur(10px);
justify-content: center; transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1),
align-items: center; transform 0.8s cubic-bezier(0.19, 1, 0.22, 1),
min-height: 100vh; filter 0.8s cubic-bezier(0.19, 1, 0.22, 1);
text-align: center; }
overflow: hidden; </style>
position: relative;
}
body::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M-10 10L110 10M10 -10L10 110" stroke-width="1" stroke="rgba(255,255,255,0.05)"/></svg>');
animation: bg-pan 20s linear infinite;
z-index: -1;
}
@keyframes bg-pan {
0% { background-position: 0% 0%; }
100% { background-position: 100% 100%; }
}
main {
padding: 2rem;
}
.card {
background: var(--card-bg-color);
border: 1px solid var(--card-border-color);
border-radius: 16px;
padding: 2rem;
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
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 {
font-size: 3rem;
font-weight: 700;
margin: 0 0 1rem;
letter-spacing: -1px;
}
p {
margin: 0.5rem 0;
font-size: 1.1rem;
}
code {
background: rgba(0,0,0,0.2);
padding: 2px 6px;
border-radius: 4px;
font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
footer {
position: absolute;
bottom: 1rem;
font-size: 0.8rem;
opacity: 0.7;
}
</style>
</head> </head>
<body> <body class="antialiased">
<main>
<div class="card"> <main class="hero-bg min-h-screen w-full flex items-center justify-center text-center px-4 overflow-hidden">
<h1>Analyzing your requirements and generating your website…</h1> <div class="relative z-10 flex flex-col items-center space-y-8">
<div class="loader" role="status" aria-live="polite" aria-label="Applying initial changes"> <h1 id="main-headline" class="font-lexend text-5xl md:text-8xl lg:text-9xl font-extrabold tracking-tighter text-white">
<span class="sr-only">Loading…</span> <span class="whitespace-nowrap">HYDRO-PREMIUM:</span>
</div> <span class="whitespace-nowrap text-gray-300">Autosi uusi aikakausi.</span>
<p class="hint"><?= ($_SERVER['HTTP_HOST'] ?? '') === 'appwizzy.com' ? 'AppWizzy' : 'Flatlogic' ?> AI is collecting your requirements and applying the first changes.</p> </h1>
<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> <h2 id="sub-headline" class="font-lexend text-2xl md:text-5xl lg:text-6xl font-bold tracking-tight text-transparent bg-clip-text bg-gradient-to-r from-[#00FFFF] to-[#C0C0C0] opacity-0" style="transition: opacity 1s ease-in-out 1s;">
</div> PUHTAUS ON TAIDETTA
</main> </h2>
<footer>
Page updated: <?= htmlspecialchars($now) ?> (UTC) <p id="tagline" class="max-w-2xl text-base md:text-lg text-gray-400 tracking-wide leading-relaxed opacity-0" style="transition: opacity 1s ease-in-out 1.5s;">
</footer> Emme vain pese autoasi. Me palautamme sen sielun. Suomen eksklusiivisin viimeistely.
</p>
<div id="cta-button-container" class="pt-8 opacity-0" style="transition: opacity 1s ease-in-out 2s;">
<button id="magnetic-button" class="group glass-morphism font-lexend text-lg md:text-xl font-bold rounded-xl px-8 py-4 flex items-center space-x-3 transition-all duration-300 hover:electric-cyan-glow hover:scale-105 hover:border-cyan-400">
<span>VARAA ELÄMYS</span>
<i data-lucide="arrow-right" class="w-6 h-6 transition-transform duration-300 group-hover:translate-x-1"></i>
</button>
</div>
</div>
<!-- Subtle decorative elements -->
<div class="absolute top-0 left-0 w-full h-full opacity-20">
<div class="absolute top-[10%] left-[5%] w-48 h-48 bg-cyan-500 rounded-full filter blur-3xl opacity-20"></div>
<div class="absolute bottom-[10%] right-[5%] w-48 h-48 bg-gray-500 rounded-full filter blur-3xl opacity-20"></div>
</div>
</main>
<script>
document.addEventListener('DOMContentLoaded', function() {
lucide.createIcons();
// --- Liquid Reveal for H2 ---
const headline2 = document.getElementById('sub-headline');
const originalText = headline2.innerText;
headline2.innerHTML = originalText.split('').map(char => {
return char === ' ' ? ' ' : `<span class="liquid-reveal-char">${char}</span>`;
}).join('');
// --- Staggered Animations ---
gsap.timeline()
.to('#sub-headline', { autoAlpha: 1, duration: 0.1 })
.to(".liquid-reveal-char", {
opacity: 1,
transform: "translateY(0) scale(1) rotateZ(0)",
filter: "blur(0)",
stagger: {
each: 0.05,
from: "random"
},
delay: 0.5
})
.to("#tagline", { autoAlpha: 1, duration: 1 }, "-=0.5")
.to("#cta-button-container", { autoAlpha: 1, duration: 1 }, "-=0.5");
// --- Magnetic Button ---
const button = document.getElementById('magnetic-button');
const strength = 50;
button.addEventListener('mousemove', (e) => {
const { offsetX, offsetY, target } = e;
const { clientWidth, clientHeight } = target;
const x = (offsetX / clientWidth - 0.5) * strength;
const y = (offsetY / clientHeight - 0.5) * strength;
gsap.to(button, {
x: x,
y: y,
duration: 0.7,
ease: "elastic.out(1, 0.3)"
});
});
button.addEventListener('mouseleave', () => {
gsap.to(button, {
x: 0,
y: 0,
duration: 1,
ease: "elastic.out(1, 0.3)"
});
});
});
</script>
</body> </body>
</html> </html>