File size: 19,903 Bytes
88da943 073b5f9 88da943 073b5f9 88da943 073b5f9 88da943 932aab4 | 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 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>StoodHeaps Creative Studio</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: {
100: '#f0f9ff',
200: '#e0f2fe',
300: '#bae6fd',
400: '#7dd3fc',
500: '#38bdf8',
600: '#0284c7',
700: '#0369a1',
800: '#075985',
900: '#0c4a6e',
},
secondary: {
100: '#f5f3ff',
200: '#ede9fe',
300: '#ddd6fe',
400: '#c4b5fd',
500: '#8b5cf6',
600: '#7c3aed',
700: '#6d28d9',
800: '#5b21b6',
900: '#4c1d95',
}
}
}
}
}
</script>
<style>
.hero-gradient {
background: linear-gradient(135deg, rgba(56,189,248,0.2) 0%, rgba(139,92,246,0.2) 100%);
}
.transition-slow {
transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
</style>
</head>
<body class="bg-gray-50 text-gray-900 dark:bg-gray-900 dark:text-gray-100 transition-slow">
<!-- Navigation -->
<nav class="fixed w-full z-50 bg-white/80 dark:bg-gray-900/80 backdrop-blur-md border-b border-gray-200 dark:border-gray-800">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<a href="#" class="flex items-center space-x-2">
<div class="w-8 h-8 rounded-full bg-primary-500"></div>
<span class="text-xl font-bold">StoodHeaps</span>
</a>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="#" class="text-sm font-medium hover:text-primary-500 transition-slow">Work</a>
<a href="#" class="text-sm font-medium hover:text-primary-500 transition-slow">Services</a>
<a href="#" class="text-sm font-medium hover:text-primary-500 transition-slow">About</a>
<a href="#" class="text-sm font-medium hover:text-primary-500 transition-slow">Contact</a>
<a href="apple.html" class="text-sm font-medium hover:text-primary-500 transition-slow">Apple Clone</a>
</div>
<div class="flex items-center md:hidden">
<button id="mobile-menu-button" class="p-2">
<i data-feather="menu"></i>
</button>
</div>
</div>
</div>
</nav>
<!-- Mobile Menu -->
<div id="mobile-menu" class="hidden fixed inset-0 z-40 bg-white dark:bg-gray-900 pt-20 px-4">
<div class="flex flex-col space-y-6 text-center">
<a href="#" class="text-lg font-medium hover:text-primary-500 transition-slow">Work</a>
<a href="#" class="text-lg font-medium hover:text-primary-500 transition-slow">Services</a>
<a href="#" class="text-lg font-medium hover:text-primary-500 transition-slow">About</a>
<a href="#" class="text-lg font-medium hover:text-primary-500 transition-slow">Contact</a>
<a href="apple.html" class="text-lg font-medium hover:text-primary-500 transition-slow">Apple Clone</a>
</div>
<button class="absolute top-4 right-4 p-2" id="close-mobile-menu">
<i data-feather="x"></i>
</button>
</div>
<!-- Hero Section -->
<section class="hero-gradient min-h-screen flex items-center pt-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-24">
<div class="text-center">
<h1 class="text-5xl md:text-7xl font-bold mb-6">
<span class="bg-clip-text text-transparent bg-gradient-to-r from-primary-500 to-secondary-500">
Creative Studio
</span>
</h1>
<p class="text-xl md:text-2xl text-gray-600 dark:text-gray-300 max-w-3xl mx-auto mb-10">
We craft digital experiences that stand out and deliver results.
</p>
<div class="flex justify-center space-x-4">
<a href="#" class="px-6 py-3 bg-primary-500 hover:bg-primary-600 text-white font-medium rounded-full transition-slow">
View Our Work
</a>
<a href="#" class="px-6 py-3 border border-gray-300 dark:border-gray-700 hover:border-primary-500 text-gray-700 dark:text-gray-300 hover:text-primary-500 font-medium rounded-full transition-slow">
Get In Touch
</a>
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section class="py-20 bg-white dark:bg-gray-900">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Our Services</h2>
<p class="text-gray-500 dark:text-gray-400 max-w-2xl mx-auto">
We offer a comprehensive suite of digital services to help your business thrive online.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="bg-gray-50 dark:bg-gray-800 p-8 rounded-xl hover:shadow-lg transition-slow">
<div class="w-14 h-14 bg-primary-100 dark:bg-primary-900 rounded-lg flex items-center justify-center mb-6">
<i data-feather="layout" class="text-primary-500 w-6 h-6"></i>
</div>
<h3 class="text-xl font-bold mb-3">UI/UX Design</h3>
<p class="text-gray-600 dark:text-gray-400">
Beautiful, intuitive interfaces that delight users and drive engagement.
</p>
</div>
<div class="bg-gray-50 dark:bg-gray-800 p-8 rounded-xl hover:shadow-lg transition-slow">
<div class="w-14 h-14 bg-primary-100 dark:bg-primary-900 rounded-lg flex items-center justify-center mb-6">
<i data-feather="code" class="text-primary-500 w-6 h-6"></i>
</div>
<h3 class="text-xl font-bold mb-3">Web Development</h3>
<p class="text-gray-600 dark:text-gray-400">
Fast, responsive websites built with modern technologies.
</p>
</div>
<div class="bg-gray-50 dark:bg-gray-800 p-8 rounded-xl hover:shadow-lg transition-slow">
<div class="w-14 h-14 bg-primary-100 dark:bg-primary-900 rounded-lg flex items-center justify-center mb-6">
<i data-feather="bar-chart-2" class="text-primary-500 w-6 h-6"></i>
</div>
<h3 class="text-xl font-bold mb-3">Digital Strategy</h3>
<p class="text-gray-600 dark:text-gray-400">
Data-driven approaches to grow your online presence.
</p>
</div>
</div>
</div>
</section>
<!-- Portfolio Section -->
<section class="py-20 bg-gray-50 dark:bg-gray-800">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Featured Work</h2>
<p class="text-gray-500 dark:text-gray-400 max-w-2xl mx-auto">
Some of our recent projects that showcase our capabilities.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<div class="group relative overflow-hidden rounded-xl">
<img src="http://static.photos/technology/640x360/1" alt="Project 1" class="w-full h-64 object-cover transition-slow group-hover:scale-105">
<div class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent flex items-end p-6">
<div>
<h3 class="text-white text-xl font-bold">E-commerce Platform</h3>
<p class="text-gray-300">UI/UX Design, Development</p>
</div>
</div>
</div>
<div class="group relative overflow-hidden rounded-xl">
<img src="http://static.photos/minimal/640x360/2" alt="Project 2" class="w-full h-64 object-cover transition-slow group-hover:scale-105">
<div class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent flex items-end p-6">
<div>
<h3 class="text-white text-xl font-bold">Mobile App</h3>
<p class="text-gray-300">Product Design, Strategy</p>
</div>
</div>
</div>
<div class="group relative overflow-hidden rounded-xl">
<img src="http://static.photos/abstract/640x360/3" alt="Project 3" class="w-full h-64 object-cover transition-slow group-hover:scale-105">
<div class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent flex items-end p-6">
<div>
<h3 class="text-white text-xl font-bold">Brand Identity</h3>
<p class="text-gray-300">Visual Design, Branding</p>
</div>
</div>
</div>
</div>
<div class="text-center mt-12">
<a href="#" class="inline-flex items-center px-6 py-3 border border-gray-300 dark:border-gray-700 rounded-full text-gray-700 dark:text-gray-300 hover:text-primary-500 hover:border-primary-500 transition-slow">
View All Projects
<i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
</a>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-20 bg-white dark:bg-gray-900">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Client Testimonials</h2>
<p class="text-gray-500 dark:text-gray-400 max-w-2xl mx-auto">
Don't just take our word for it - here's what our clients say.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-gray-50 dark:bg-gray-800 p-8 rounded-xl">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full overflow-hidden mr-4">
<img src="http://static.photos/people/200x200/1" alt="Client 1" class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-bold">Sarah Johnson</h4>
<p class="text-sm text-gray-500 dark:text-gray-400">CEO, TechStart</p>
</div>
</div>
<p class="text-gray-600 dark:text-gray-400 italic">
"The team at StoodHeaps transformed our online presence. Their design thinking approach resulted in a 40% increase in user engagement."
</p>
</div>
<div class="bg-gray-50 dark:bg-gray-800 p-8 rounded-xl">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full overflow-hidden mr-4">
<img src="http://static.photos/people/200x200/2" alt="Client 2" class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-bold">Michael Chen</h4>
<p class="text-sm text-gray-500 dark:text-gray-400">Marketing Director, BrandCo</p>
</div>
</div>
<p class="text-gray-600 dark:text-gray-400 italic">
"From concept to launch, the process was seamless. Their attention to detail and technical expertise is unmatched."
</p>
</div>
<div class="bg-gray-50 dark:bg-gray-800 p-8 rounded-xl">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full overflow-hidden mr-4">
<img src="http://static.photos/people/200x200/3" alt="Client 3" class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-bold">Emma Rodriguez</h4>
<p class="text-sm text-gray-500 dark:text-gray-400">Founder, GreenLife</p>
</div>
</div>
<p class="text-gray-600 dark:text-gray-400 italic">
"Working with StoodHeaps was a game-changer for our startup. They understood our vision and brought it to life beautifully."
</p>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-24 bg-gradient-to-r from-primary-500 to-secondary-500 text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to elevate your digital presence?</h2>
<p class="text-xl text-primary-100 max-w-2xl mx-auto mb-10">
Let's discuss how we can help you achieve your business goals through exceptional design and technology.
</p>
<a href="#" class="inline-flex items-center px-8 py-4 bg-white text-primary-600 font-bold rounded-full hover:bg-gray-100 transition-slow">
Get Started
<i data-feather="arrow-right" class="ml-2 w-5 h-5"></i>
</a>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-gray-400 py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<a href="#" class="flex items-center space-x-2">
<div class="w-8 h-8 rounded-full bg-primary-500"></div>
<span class="text-xl font-bold text-white">StoodHeaps</span>
</a>
<p class="mt-4 text-sm">
Crafting digital experiences that make an impact.
</p>
</div>
<div>
<h4 class="text-white font-bold mb-4">Services</h4>
<ul class="space-y-2">
<li><a href="#" class="hover:text-white transition-slow">UI/UX Design</a></li>
<li><a href="#" class="hover:text-white transition-slow">Web Development</a></li>
<li><a href="#" class="hover:text-white transition-slow">Mobile Apps</a></li>
<li><a href="#" class="hover:text-white transition-slow">Branding</a></li>
</ul>
</div>
<div>
<h4 class="text-white font-bold mb-4">Company</h4>
<ul class="space-y-2">
<li><a href="#" class="hover:text-white transition-slow">About Us</a></li>
<li><a href="#" class="hover:text-white transition-slow">Work</a></li>
<li><a href="#" class="hover:text-white transition-slow">Careers</a></li>
<li><a href="#" class="hover:text-white transition-slow">Contact</a></li>
</ul>
</div>
<div>
<h4 class="text-white font-bold mb-4">Connect</h4>
<div class="flex space-x-4">
<a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-primary-500 hover:text-white transition-slow">
<i data-feather="twitter"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-primary-500 hover:text-white transition-slow">
<i data-feather="instagram"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-primary-500 hover:text-white transition-slow">
<i data-feather="linkedin"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-primary-500 hover:text-white transition-slow">
<i data-feather="dribbble"></i>
</a>
</div>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-sm">
© 2023 StoodHeaps Creative Studio. All rights reserved.
</p>
<div class="flex space-x-6 mt-4 md:mt-0">
<a href="#" class="text-sm hover:text-white transition-slow">Privacy Policy</a>
<a href="#" class="text-sm hover:text-white transition-slow">Terms of Service</a>
</div>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
const mobileMenuButton = document.getElementById('mobile-menu-button');
const closeMobileMenu = document.getElementById('close-mobile-menu');
const mobileMenu = document.getElementById('mobile-menu');
mobileMenuButton.addEventListener('click', () => {
mobileMenu.classList.remove('hidden');
document.body.style.overflow = 'hidden';
});
closeMobileMenu.addEventListener('click', () => {
mobileMenu.classList.add('hidden');
document.body.style.overflow = '';
});
// Dark mode toggle
const darkModeToggle = document.getElementById('dark-mode-toggle');
const html = document.documentElement;
if (localStorage.getItem('darkMode') === 'true') {
html.classList.add('dark');
}
darkModeToggle?.addEventListener('click', () => {
html.classList.toggle('dark');
localStorage.setItem('darkMode', html.classList.contains('dark'));
});
// Feather icons
feather.replace();
</script>
</body>
</html>
|