feat: add success page

This commit is contained in:
Anton
2026-05-12 15:24:30 +03:00
parent b3ab916820
commit 89eec9cd68
+39
View File
@@ -0,0 +1,39 @@
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sunset Pass — Спасибо!</title>
<link rel="stylesheet" href="style.css">
<style>
.success-container {
text-align: center;
padding: 80px 20px;
}
.checkmark {
font-size: 4rem;
margin-bottom: 24px;
}
.success-container h2 {
font-size: 1.8rem;
margin-bottom: 16px;
color: #1a1a1a;
}
.success-container p {
color: #666;
font-size: 1rem;
max-width: 400px;
margin: 0 auto;
}
</style>
</head>
<body>
<div class="container">
<div class="success-container">
<div class="checkmark"></div>
<h2>Спасибо! Ответы получены.</h2>
<p>Мы свяжемся с вами в течение 1-2 рабочих дней для обсуждения деталей проекта.</p>
</div>
</div>
</body>
</html>