File size: 14,133 Bytes
8a904c9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 |
<!DOCTYPE html>
<html lang="cs">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>tommei.cz</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">
<style>
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Montserrat', sans-serif;
scroll-behavior: smooth;
}
.gradient-bg {
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}
.section-divider {
height: 100px;
background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}
.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.animate-float {
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
100% { transform: translateY(0px); }
}
</style>
</head>
<body class="bg-white text-gray-800">
<!-- Navigation -->
<nav class="bg-white shadow-md sticky top-0 z-50">
<div class="container mx-auto px-6 py-3">
<div class="flex items-center justify-between">
<div class="flex items-center">
<img src="https://www.tommei.cz/wp-content/uploads/2023/08/Datovy-zdroj-14@10x.png" alt="Tommei Logo" class="h-12 hovered-element">
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="#" class="text-gray-800 hover:text-blue-600 font-medium">Domů</a>
<a href="#" class="text-gray-800 hover:text-blue-600 font-medium">Služby</a>
<a href="#" class="text-gray-800 hover:text-blue-600 font-medium">O nás</a>
<a href="#" class="text-gray-800 hover:text-blue-600 font-medium">Kontakt</a>
</div>
<button class="md:hidden focus:outline-none">
<i class="fas fa-bars text-2xl text-gray-800"></i>
</button>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="gradient-bg py-20">
<div class="container mx-auto px-6">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<h1 class="text-4xl md:text-5xl font-bold text-gray-800 leading-tight mb-6">
Profesionální marketingové řešení
</h1>
<p class="text-lg text-gray-600 mb-8">
Pomáháme vašemu byznysu růst pomocí efektivních marketingových strategií.
</p>
<button class="bg-blue-600 hover:bg-blue-700 text-white font-bold py-3 px-6 rounded-full transition duration-300">
Kontaktujte nás
</button>
</div>
<div class="md:w-1/2 flex justify-center">
<img src="https://www.tommei.cz/wp-content/uploads/elementor/thumbs/Datovy-zdroj-9@10x-qawx3q0cfsmgpwox9skxj6b2e6nw0o0v6gf5waphq8.png"
alt="Marketing Illustration"
class="w-full max-w-md animate-float">
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section class="py-20 bg-white">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Naše výhody</h2>
<div class="w-20 h-1 bg-blue-600 mx-auto"></div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-2 gap-10">
<!-- Feature 1 -->
<div class="bg-white p-8 rounded-xl shadow-lg feature-card transition duration-300">
<div class="flex items-center mb-6">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-eye text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800">Budete vidět</h3>
</div>
<p class="text-gray-600">
<strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
</p>
</div>
<!-- Feature 2 -->
<div class="bg-white p-8 rounded-xl shadow-lg feature-card transition duration-300">
<div class="flex items-center mb-6">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-ad text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800">Reklama co prodává</h3>
</div>
<p class="text-gray-600">
<strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
</p>
</div>
<!-- Feature 3 -->
<div class="bg-white p-8 rounded-xl shadow-lg feature-card transition duration-300">
<div class="flex items-center mb-6">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-file-invoice-dollar text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800">Žádné překvapení na faktuře</h3>
</div>
<p class="text-gray-600">
<strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
</p>
</div>
<!-- Feature 4 -->
<div class="bg-white p-8 rounded-xl shadow-lg feature-card transition duration-300">
<div class="flex items-center mb-6">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-clipboard-list text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800">Jasný plán na míru</h3>
</div>
<p class="text-gray-600">
Ďábel je v detailu a každý business je specifický. Proto každá naše spolupráce bude dávat smysl. Cíle a měřitelnost je základ úspěchu.
</p>
</div>
</div>
</div>
</section>
<!-- Image Gallery Section -->
<section class="py-20 bg-gray-50">
<div class="container mx-auto px-6">
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div class="flex items-center justify-center">
<img src="https://www.tommei.cz/wp-content/uploads/elementor/thumbs/Datovy-zdroj-10@10x-qawx9ynrt75tnqfbj6310yv894dcqk7cxaouzjhwxs.png"
alt="Marketing Illustration"
class="rounded-xl shadow-lg w-full max-w-md">
</div>
<div class="flex items-center justify-center">
<img src="https://www.tommei.cz/wp-content/uploads/elementor/thumbs/Datovy-zdroj-11@10x-qawxflowtevxghfowfg6jodsoi3way6qh993973d34.png"
alt="Marketing Illustration"
class="rounded-xl shadow-lg w-full max-w-md">
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-20 bg-blue-600 text-white">
<div class="container mx-auto px-6 text-center">
<div class="max-w-3xl mx-auto">
<img src="https://www.tommei.cz/wp-content/uploads/elementor/thumbs/Datovy-zdroj-13@10x-qawxhxcjpo2g5s26bxlz7l9tjsnkc0eugrbaytnbpc.png"
alt="Marketing Illustration"
class="w-32 mx-auto mb-8">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Začněte s námi spolupracovat ještě dnes</h2>
<p class="text-xl mb-8">Nabízíme řešení šitá na míru vašim potřebám.</p>
<button class="bg-white hover:bg-gray-100 text-blue-600 font-bold py-3 px-8 rounded-full transition duration-300">
Domluvte si konzultaci
</button>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="container mx-auto px-6">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<img src="https://www.tommei.cz/wp-content/uploads/2023/08/Datovy-zdroj-14@10x.png" alt="Tommei Logo" class="h-12 mb-4 hovered-element">
<p class="text-gray-400">Profesionální marketingové řešení pro váš business.</p>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Navigace</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Domů</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Služby</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">O nás</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Kontakt</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Kontakt</h3>
<ul class="space-y-2 text-gray-400">
<li class="flex items-center"><i class="fas fa-map-marker-alt mr-2"></i> Adresa 123, Praha</li>
<li class="flex items-center"><i class="fas fa-phone mr-2"></i> +420 123 456 789</li>
<li class="flex items-center"><i class="fas fa-envelope mr-2"></i> info@tommei.cz</li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Sledujte nás</h3>
<div class="flex space-x-4">
<a href="#" class="bg-gray-800 hover:bg-gray-700 w-10 h-10 rounded-full flex items-center justify-center transition">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="bg-gray-800 hover:bg-gray-700 w-10 h-10 rounded-full flex items-center justify-center transition">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="bg-gray-800 hover:bg-gray-700 w-10 h-10 rounded-full flex items-center justify-center transition">
<i class="fab fa-linkedin-in"></i>
</a>
</div>
</div>
</div>
<div class="border-t border-gray-800 mt-10 pt-6 text-center text-gray-400">
<p>© 2023 tommei.cz. Všechna práva vyhrazena.</p>
</div>
</div>
</footer>
<script>
</script>
<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=tommei/test" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |