Compare commits
No commits in common. "ai-dev" and "master" have entirely different histories.
279
index.php
279
index.php
@ -1,137 +1,150 @@
|
|||||||
<!DOCTYPE html>
|
<?php
|
||||||
<html lang="fi">
|
declare(strict_types=1);
|
||||||
|
@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.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
<title>Hydro-Premium: Autosi uusi aikakausi</title>
|
<title>New Style</title>
|
||||||
<meta name="description" content="Emme vain pese autoasi. Me palautamme sen sielun. Suomen eksklusiivisin viimeistely.">
|
<?php
|
||||||
|
// Read project preview data from environment
|
||||||
<script src="https://cdn.tailwindcss.com"></script>
|
$projectDescription = $_SERVER['PROJECT_DESCRIPTION'] ?? '';
|
||||||
|
$projectImageUrl = $_SERVER['PROJECT_IMAGE_URL'] ?? '';
|
||||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
?>
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
<?php if ($projectDescription): ?>
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Lexend:wght@700;800&display=swap" rel="stylesheet">
|
<!-- Meta description -->
|
||||||
|
<meta name="description" content='<?= htmlspecialchars($projectDescription) ?>' />
|
||||||
<script src="https://unpkg.com/lucide@latest"></script>
|
<!-- Open Graph meta tags -->
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/gsap.min.js"></script>
|
<meta property="og:description" content="<?= htmlspecialchars($projectDescription) ?>" />
|
||||||
|
<!-- Twitter meta tags -->
|
||||||
<style>
|
<meta property="twitter:description" content="<?= htmlspecialchars($projectDescription) ?>" />
|
||||||
body {
|
<?php endif; ?>
|
||||||
background-color: #050505;
|
<?php if ($projectImageUrl): ?>
|
||||||
color: white;
|
<!-- Open Graph image -->
|
||||||
font-family: 'Inter', sans-serif;
|
<meta property="og:image" content="<?= htmlspecialchars($projectImageUrl) ?>" />
|
||||||
overflow-x: hidden;
|
<!-- Twitter image -->
|
||||||
}
|
<meta property="twitter:image" content="<?= htmlspecialchars($projectImageUrl) ?>" />
|
||||||
.font-lexend { font-family: 'Lexend', sans-serif; }
|
<?php endif; ?>
|
||||||
.hero-bg {
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||||
background-image: radial-gradient(circle at center, #1a1a1a 0%, #050505 70%);
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||||
}
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" rel="stylesheet">
|
||||||
.glass-morphism {
|
<style>
|
||||||
background: rgba(255, 255, 255, 0.05);
|
:root {
|
||||||
backdrop-filter: blur(10px);
|
--bg-color-start: #6a11cb;
|
||||||
-webkit-backdrop-filter: blur(10px);
|
--bg-color-end: #2575fc;
|
||||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
--text-color: #ffffff;
|
||||||
}
|
--card-bg-color: rgba(255, 255, 255, 0.01);
|
||||||
.electric-cyan-glow {
|
--card-border-color: rgba(255, 255, 255, 0.1);
|
||||||
box-shadow: 0 0 15px #00FFFF, 0 0 30px #00FFFF;
|
}
|
||||||
}
|
body {
|
||||||
.liquid-reveal-char {
|
margin: 0;
|
||||||
display: inline-block;
|
font-family: 'Inter', sans-serif;
|
||||||
opacity: 0;
|
background: linear-gradient(45deg, var(--bg-color-start), var(--bg-color-end));
|
||||||
transform: translateY(50px) scale(0.8) rotateZ(-15deg);
|
color: var(--text-color);
|
||||||
filter: blur(10px);
|
display: flex;
|
||||||
transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1),
|
justify-content: center;
|
||||||
transform 0.8s cubic-bezier(0.19, 1, 0.22, 1),
|
align-items: center;
|
||||||
filter 0.8s cubic-bezier(0.19, 1, 0.22, 1);
|
min-height: 100vh;
|
||||||
}
|
text-align: center;
|
||||||
</style>
|
overflow: hidden;
|
||||||
|
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 class="antialiased">
|
<body>
|
||||||
|
<main>
|
||||||
<main class="hero-bg min-h-screen w-full flex items-center justify-center text-center px-4 overflow-hidden">
|
<div class="card">
|
||||||
<div class="relative z-10 flex flex-col items-center space-y-8">
|
<h1>Analyzing your requirements and generating your website…</h1>
|
||||||
<h1 id="main-headline" class="font-lexend text-5xl md:text-8xl lg:text-9xl font-extrabold tracking-tighter text-white">
|
<div class="loader" role="status" aria-live="polite" aria-label="Applying initial changes">
|
||||||
<span class="whitespace-nowrap">HYDRO-PREMIUM:</span>
|
<span class="sr-only">Loading…</span>
|
||||||
<span class="whitespace-nowrap text-gray-300">Autosi uusi aikakausi.</span>
|
</div>
|
||||||
</h1>
|
<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>
|
||||||
<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;">
|
<p>Runtime: PHP <code><?= htmlspecialchars($phpVersion) ?></code> — UTC <code><?= htmlspecialchars($now) ?></code></p>
|
||||||
PUHTAUS ON TAIDETTA
|
</div>
|
||||||
</h2>
|
</main>
|
||||||
|
<footer>
|
||||||
<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;">
|
Page updated: <?= htmlspecialchars($now) ?> (UTC)
|
||||||
Emme vain pese autoasi. Me palautamme sen sielun. Suomen eksklusiivisin viimeistely.
|
</footer>
|
||||||
</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>
|
||||||
Loading…
x
Reference in New Issue
Block a user