site / index.html
SallyHS's picture
Напиши сайт разрывающий шаблоны сайтов, чтобы он был очень приятен глазу и много функциональный - Initial Deployment
0294c1d verified
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Инновационный сайт</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#6366f1',
secondary: '#8b5cf6',
accent: '#ec4899',
dark: '#0f172a',
light: '#f8fafc'
},
animation: {
'float': 'float 6s ease-in-out infinite',
'pulse-slow': 'pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'bounce-slow': 'bounce 3s infinite'
},
keyframes: {
float: {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-20px)' }
}
}
}
}
}
</script>
<style type="text/tailwindcss">
@layer base {
body {
@apply bg-gradient-to-br from-dark to-indigo-900 text-light min-h-screen font-sans;
}
.glass {
@apply bg-white/10 backdrop-blur-lg border border-white/20 rounded-2xl shadow-xl;
}
.neon-border {
@apply border-2 border-primary shadow-[0_0_15px_#6366f1];
}
.blob {
@apply absolute rounded-full filter blur-3xl opacity-50;
}
.card-hover {
@apply transition-all duration-300 hover:scale-105 hover:shadow-2xl;
}
.section-padding {
@apply py-20 px-4 sm:px-6 lg:px-8;
}
}
</style>
</head>
<body class="overflow-x-hidden">
<!-- Фоновые элементы -->
<div class="fixed inset-0 overflow-hidden -z-10">
<div class="blob w-96 h-96 bg-primary top-10 -left-20"></div>
<div class="blob w-80 h-80 bg-secondary bottom-10 right-10"></div>
<div class="blob w-64 h-64 bg-accent top-1/3 right-1/4"></div>
</div>
<!-- Навигация -->
<nav class="glass py-4 px-6 flex justify-between items-center sticky top-0 z-50">
<div class="flex items-center space-x-2">
<div class="w-10 h-10 rounded-full bg-gradient-to-r from-primary to-accent flex items-center justify-center">
<i class="fas fa-infinity text-white"></i>
</div>
<span class="text-xl font-bold">InnovateX</span>
</div>
<div class="hidden md:flex space-x-8">
<a href="#" class="hover:text-primary transition-colors">Главная</a>
<a href="#" class="hover:text-primary transition-colors">О нас</a>
<a href="#" class="hover:text-primary transition-colors">Услуги</a>
<a href="#" class="hover:text-primary transition-colors">Портфолио</a>
<a href="#" class="hover:text-primary transition-colors">Контакты</a>
</div>
<button class="md:hidden text-2xl">
<i class="fas fa-bars"></i>
</button>
<button class="hidden md:block bg-gradient-to-r from-primary to-secondary px-6 py-2 rounded-full font-medium hover:opacity-90 transition-opacity">
Начать проект
</button>
</nav>
<!-- Герой секция -->
<section class="section-padding flex flex-col items-center text-center relative">
<div class="absolute top-20 right-10 w-32 h-32 rounded-full bg-primary animate-float opacity-20"></div>
<div class="absolute bottom-40 left-20 w-24 h-24 rounded-full bg-accent animate-pulse-slow opacity-30"></div>
<h1 class="text-4xl md:text-6xl font-bold max-w-3xl leading-tight mb-6">
Создаем цифровые решения <span class="text-transparent bg-clip-text bg-gradient-to-r from-primary to-accent">будущего</span>
</h1>
<p class="text-lg md:text-xl text-gray-300 max-w-2xl mb-10">
Мы разрабатываем инновационные продукты, которые меняют правила игры. Наш подход сочетает креативность, технологии и стратегическое мышление.
</p>
<div class="flex flex-col sm:flex-row gap-4 mb-16">
<button class="bg-gradient-to-r from-primary to-secondary px-8 py-4 rounded-full font-medium text-lg hover:opacity-90 transition-opacity shadow-lg">
Запустить проект
</button>
<button class="glass px-8 py-4 rounded-full font-medium text-lg hover:bg-white/20 transition-colors">
<i class="fas fa-play-circle mr-2"></i>Смотреть демо
</button>
</div>
<div class="grid grid-cols-2 md:grid-cols-4 gap-6 w-full max-w-4xl">
<div class="glass p-6 text-center card-hover">
<div class="text-4xl mb-3 text-primary">
<i class="fas fa-rocket"></i>
</div>
<h3 class="font-bold text-lg mb-1">Быстрая разработка</h3>
<p class="text-gray-300 text-sm">Создаем MVP за 2 недели</p>
</div>
<div class="glass p-6 text-center card-hover">
<div class="text-4xl mb-3 text-secondary">
<i class="fas fa-mobile-alt"></i>
</div>
<h3 class="font-bold text-lg mb-1">Адаптивный дизайн</h3>
<p class="text-gray-300 text-sm">Под все устройства</p>
</div>
<div class="glass p-6 text-center card-hover">
<div class="text-4xl mb-3 text-accent">
<i class="fas fa-lock"></i>
</div>
<h3 class="font-bold text-lg mb-1">Безопасность</h3>
<p class="text-gray-300 text-sm">Защита данных клиентов</p>
</div>
<div class="glass p-6 text-center card-hover">
<div class="text-4xl mb-3 text-primary">
<i class="fas fa-sync-alt"></i>
</div>
<h3 class="font-bold text-lg mb-1">Поддержка 24/7</h3>
<p class="text-gray-300 text-sm">Всегда на связи</p>
</div>
</div>
</section>
<!-- Уникальные особенности -->
<section class="section-padding bg-gradient-to-r from-dark/50 to-indigo-900/50">
<div class="max-w-6xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Почему мы <span class="text-transparent bg-clip-text bg-gradient-to-r from-primary to-accent">уникальны</span></h2>
<p class="text-gray-300 max-w-2xl mx-auto">Наш подход отличается от стандартных решений</p>
</div>
<div class="grid md:grid-cols-2 gap-12 items-center">
<div class="relative">
<div class="absolute -inset-4 bg-gradient-to-r from-primary to-secondary rounded-2xl opacity-20 blur-lg"></div>
<div class="glass p-8 relative">
<div class="flex items-start mb-6">
<div class="text-3xl mr-4 text-primary">
<i class="fas fa-brain"></i>
</div>
<div>
<h3 class="text-2xl font-bold mb-2">AI-интеграция</h3>
<p class="text-gray-300">Мы внедряем искусственный интеллект в каждый проект для максимальной эффективности и автоматизации процессов.</p>
</div>
</div>
<div class="flex items-start mb-6">
<div class="text-3xl mr-4 text-secondary">
<i class="fas fa-vr-cardboard"></i>
</div>
<div>
<h3 class="text-2xl font-bold mb-2">VR/AR решения</h3>
<p class="text-gray-300">Создаем иммерсивные опыты для обучения, маркетинга и взаимодействия с клиентами.</p>
</div>
</div>
<div class="flex items-start">
<div class="text-3xl mr-4 text-accent">
<i class="fas fa-leaf"></i>
</div>
<div>
<h3 class="text-2xl font-bold mb-2">Экологичный подход</h3>
<p class="text-gray-300">Все наши решения оптимизированы для минимального энергопотребления и углеродного следа.</p>
</div>
</div>
</div>
</div>
<div class="relative">
<div class="relative rounded-2xl overflow-hidden">
<div class="bg-gradient-to-br from-primary/20 to-accent/20 h-96 rounded-2xl flex items-center justify-center">
<div class="text-9xl text-white/10">
<i class="fas fa-cogs"></i>
</div>
</div>
<div class="absolute inset-0 flex items-center justify-center">
<div class="w-64 h-64 rounded-full border-4 border-white/20 animate-pulse-slow"></div>
</div>
<div class="absolute top-10 left-10 w-24 h-24 rounded-full bg-primary/30"></div>
<div class="absolute bottom-10 right-10 w-16 h-16 rounded-full bg-accent/30"></div>
</div>
</div>
</div>
</div>
</section>
<!-- Портфолио -->
<section class="section-padding">
<div class="max-w-6xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Наши <span class="text-transparent bg-clip-text bg-gradient-to-r from-primary to-accent">работы</span></h2>
<p class="text-gray-300 max-w-2xl mx-auto">Проекты, которые изменили бизнес клиентов</p>
</div>
<div class="grid md:grid-cols-3 gap-8">
<div class="glass overflow-hidden card-hover">
<div class="h-48 bg-gradient-to-r from-purple-500 to-indigo-600 relative">
<div class="absolute inset-0 flex items-center justify-center">
<div class="text-6xl text-white/20">
<i class="fas fa-shopping-cart"></i>
</div>
</div>
</div>
<div class="p-6">
<div class="flex justify-between items-start mb-3">
<h3 class="text-xl font-bold">E-commerce платформа</h3>
<span class="bg-primary/20 text-primary px-3 py-1 rounded-full text-sm">2023</span>
</div>
<p class="text-gray-300 mb-4">Платформа для онлайн-продаж с ИИ-рекомендациями и AR-примеркой.</p>
<div class="flex flex-wrap gap-2">
<span class="bg-white/10 px-3 py-1 rounded-full text-sm">React</span>
<span class="bg-white/10 px-3 py-1 rounded-full text-sm">Node.js</span>
<span class="bg-white/10 px-3 py-1 rounded-full text-sm">AI</span>
</div>
</div>
</div>
<div class="glass overflow-hidden card-hover">
<div class="h-48 bg-gradient-to-r from-cyan-500 to-blue-600 relative">
<div class="absolute inset-0 flex items-center justify-center">
<div class="text-6xl text-white/20">
<i class="fas fa-heartbeat"></i>
</div>
</div>
</div>
<div class="p-6">
<div class="flex justify-between items-start mb-3">
<h3 class="text-xl font-bold">Медицинская система</h3>
<span class="bg-primary/20 text-primary px-3 py-1 rounded-full text-sm">2022</span>
</div>
<p class="text-gray-300 mb-4">Инновационная платформа для телемедицины с блокчейн-хранением данных.</p>
<div class="flex flex-wrap gap-2">
<span class="bg-white/10 px-3 py-1 rounded-full text-sm">Vue.js</span>
<span class="bg-white/10 px-3 py-1 rounded-full text-sm">Python</span>
<span class="bg-white/10 px-3 py-1 rounded-full text-sm">Blockchain</span>
</div>
</div>
</div>
<div class="glass overflow-hidden card-hover">
<div class="h-48 bg-gradient-to-r from-pink-500 to-rose-600 relative">
<div class="absolute inset-0 flex items-center justify-center">
<div class="text-6xl text-white/20">
<i class="fas fa-graduation-cap"></i>
</div>
</div>
</div>
<div class="p-6">
<div class="flex justify-between items-start mb-3">
<h3 class="text-xl font-bold">Образовательная платформа</h3>
<span class="bg-primary/20 text-primary px-3 py-1 rounded-full text-sm">2023</span>
</div>
<p class="text-gray-300 mb-4">Интерактивная система обучения с VR-классами и адаптивными курсами.</p>
<div class="flex flex-wrap gap-2">
<span class="bg-white/10 px-3 py-1 rounded-full text-sm">React</span>
<span class="bg-white/10 px-3 py-1 rounded-full text-sm">Three.js</span>
<span class="bg-white/10 px-3 py-1 rounded-full text-sm">VR</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Контакты -->
<section class="section-padding bg-gradient-to-r from-dark/50 to-indigo-900/50">
<div class="max-w-4xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Свяжитесь с <span class="text-transparent bg-clip-text bg-gradient-to-r from-primary to-accent">нами</span></h2>
<p class="text-gray-300 max-w-2xl mx-auto">Готовы воплотить вашу идею в реальность? Напишите нам!</p>
</div>
<div class="glass p-8 md:p-12 rounded-3xl">
<div class="grid md:grid-cols-2 gap-10">
<div>
<h3 class="text-2xl font-bold mb-6">Отправьте сообщение</h3>
<form class="space-y-6">
<div>
<label class="block mb-2 text-gray-300">Ваше имя</label>
<input type="text" class="w-full bg-white/10 border border-white/20 rounded-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-primary">
</div>
<div>
<label class="block mb-2 text-gray-300">Email</label>
<input type="email" class="w-full bg-white/10 border border-white/20 rounded-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-primary">
</div>
<div>
<label class="block mb-2 text-gray-300">Сообщение</label>
<textarea rows="4" class="w-full bg-white/10 border border-white/20 rounded-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-primary"></textarea>
</div>
<button type="submit" class="w-full bg-gradient-to-r from-primary to-secondary px-6 py-3 rounded-lg font-medium hover:opacity-90 transition-opacity">
Отправить сообщение
</button>
</form>
</div>
<div>
<h3 class="text-2xl font-bold mb-6">Контактная информация</h3>
<div class="space-y-6">
<div class="flex items-start">
<div class="text-2xl mr-4 text-primary">
<i class="fas fa-map-marker-alt"></i>
</div>
<div>
<h4 class="font-bold mb-1">Наш офис</h4>
<p class="text-gray-300">г. Москва, ул. Тверская, 15</p>
</div>
</div>
<div class="flex items-start">
<div class="text-2xl mr-4 text-secondary">
<i class
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=SallyHS/site" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>