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