sozday-testovyy-lending/index.html

105 lines
5.0 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Тестовый лендинг</title>
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🚀</text></svg>">
<style>
:root{--ink:#0F1218;--cyan:#00E5FF;--cyan-50:#E8FCFF;--white:#fff;--gray-500:#5B6573;--gray-100:#F2F4F7}
*{box-sizing:border-box;margin:0;padding:0}
body{font:17px/1.6 -apple-system,BlinkMacSystemFont,"Segoe UI",Inter,system-ui,sans-serif;color:var(--ink);background:var(--white)}
.container{max-width:1140px;margin:0 auto;padding:80px 24px}
.hero{background:var(--ink);color:var(--white);padding:120px 24px}
.hero h1{font-size:56px;font-weight:800;line-height:1.05;margin-bottom:24px}
.hero p{font-size:20px;color:#9aa3b2;max-width:600px;margin-bottom:32px}
.btn{display:inline-block;background:var(--cyan);color:var(--ink);padding:14px 28px;border-radius:8px;font-weight:700;text-decoration:none;transition:transform .2s}
.btn:hover{transform:translateY(-2px)}
.section h2{font-size:36px;font-weight:700;margin-bottom:24px;text-align:center}
.section{padding:80px 24px}
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:24px;max-width:1140px;margin:0 auto}
.card{background:var(--gray-100);border-radius:16px;padding:32px;transition:transform .2s}
.card:hover{transform:translateY(-4px)}
.card h3{font-size:22px;font-weight:700;margin-bottom:12px}
.card p{color:var(--gray-500)}
.features{background:var(--cyan-50)}
.about{text-align:center}
.about p{max-width:700px;margin:0 auto 24px}
.cta{text-align:center;background:var(--ink);color:var(--white);border-radius:16px;padding:48px;margin-top:48px}
.cta h2{margin-bottom:16px}
.contact{text-align:center}
.contact-links{display:flex;justify-content:center;gap:16px;flex-wrap:wrap;margin-top:24px}
.contact a{color:var(--ink);text-decoration:none;padding:12px 24px;border:2px solid var(--ink);border-radius:8px;font-weight:700}
.contact a:hover{background:var(--ink);color:var(--white)}
.reveal{opacity:0;transform:translateY(20px);transition:opacity .6s ease,transform .6s ease}
.reveal.in{opacity:1;transform:none}
@media (max-width:640px){.hero h1{font-size:36px}.section h2{font-size:28px}.container{padding:48px 20px}.hero{padding:80px 20px}}
</style>
</head>
<body>
<section class="hero">
<div class="container">
<h1>Тестовый лендинг 🚀</h1>
<p>Это пример быстрого лендинга, созданного за несколько минут. Выглядит отлично, работает везде, редактируется легко.</p>
<a class="btn" href="#features">Узнать больше</a>
</div>
</section>
<section id="features" class="section features">
<div class="container">
<h2>Преимущества</h2>
<div class="grid">
<div class="card reveal">
<h3>⚡ Быстро</h3>
<p>Мгновенная загрузка, оптимизированный код, никаких тяжелых библиотек.</p>
</div>
<div class="card reveal">
<h3>🎨 Красиво</h3>
<p>Современный дизайн, приятные цвета, продуманная типографика.</p>
</div>
<div class="card reveal">
<h3>📱 Адаптивно</h3>
<p>Идеально смотрится на телефоне, планшете и компьютере.</p>
</div>
<div class="card reveal">
<h3>🔧 Гибко</h3>
<p>Легко изменить под любую задачу: визитка, портфолио, промо.</p>
</div>
</div>
</div>
</section>
<section class="section about">
<div class="container">
<h2>О проекте</h2>
<p>Этот лендинг создан по системе дизайна Vibe42 — готовому набору стилей и компонентов для быстрой разработки.</p>
<p>Можно использовать как основу для любого проекта: сайт-визитка, портфолио, анонс мероприятия, промо продукта.</p>
<div class="cta reveal">
<h2>Готовы начать?</h2>
<p style="color:#9aa3b2;margin-bottom:24px">Просто отредактируйте текст и цвета под вашу задачу</p>
<a class="btn" href="#contact">Связаться</a>
</div>
</div>
</section>
<section id="contact" class="section contact">
<div class="container">
<h2>Контакты</h2>
<p>Свяжитесь любым удобным способом</p>
<div class="contact-links">
<a href="tel:+77771234567">📞 Позвонить</a>
<a href="https://wa.me/77771234567">💬 WhatsApp</a>
<a href="mailto:hello@example.com">✉️ Написать</a>
</div>
</div>
</section>
<script>
var io=new IntersectionObserver(function(entries){
entries.forEach(function(e){ if(e.isIntersecting) e.target.classList.add('in'); });
},{threshold:.15});
document.querySelectorAll('.reveal').forEach(function(el){ io.observe(el); });
</script>
</body>
</html>