File size: 17,498 Bytes
4cb0a1e |
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 |
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PixelPulse Studios - AI-Powered Creative Studio</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#7e22ce',
secondary: '#3b82f6',
dark: '#0f172a',
darker: '#020617'
}
}
}
}
</script>
</head>
<body class="bg-darker text-gray-200 font-sans">
<!-- Navbar Component -->
<custom-navbar></custom-navbar>
<!-- Hero Section -->
<section class="relative h-screen flex items-center justify-center bg-gradient-to-br from-darker to-primary/10 overflow-hidden">
<div class="absolute inset-0 z-0">
<div class="absolute top-1/4 left-1/4 w-64 h-64 rounded-full bg-primary/20 blur-3xl"></div>
<div class="absolute bottom-1/3 right-1/3 w-96 h-96 rounded-full bg-secondary/20 blur-3xl"></div>
</div>
<div class="container mx-auto px-6 z-10 text-center">
<h1 class="text-5xl md:text-7xl font-bold mb-6 text-transparent bg-clip-text bg-gradient-to-r from-primary to-secondary">
PixelPulse
</h1>
<h2 class="text-xl md:text-2xl mb-8 max-w-2xl mx-auto text-gray-300">
AI-Powered Creative Studio
</h2>
<p class="text-lg md:text-xl mb-12 max-w-3xl mx-auto text-gray-400">
We design, animate, and build multimedia experiences for board games, Kickstarter campaigns, and digital brands.
</p>
<a href="#portfolio" class="inline-block px-8 py-4 rounded-full bg-gradient-to-r from-primary to-secondary text-white font-semibold hover:shadow-lg hover:shadow-primary/30 transition-all duration-300">
View Portfolio
</a>
</div>
<div class="absolute bottom-10 left-1/2 transform -translate-x-1/2 animate-bounce">
<i data-feather="chevron-down" class="text-gray-400"></i>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 bg-dark">
<div class="container mx-auto px-6">
<div class="max-w-4xl mx-auto text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-8 text-transparent bg-clip-text bg-gradient-to-r from-primary to-secondary">
Crafting Digital Magic
</h2>
<p class="text-lg md:text-xl leading-relaxed text-gray-300">
MultimediaOne is a full-service creative studio specializing in board games, Kickstarter promo videos, and AI-powered design. Our team of experts blends art, motion, and technology to craft visually stunning experiences that stand out.
</p>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="py-20 bg-darker">
<div class="container mx-auto px-6">
<h2 class="text-3xl md:text-4xl font-bold mb-16 text-center text-transparent bg-clip-text bg-gradient-to-r from-secondary to-primary">
Our Services
</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Service 1 -->
<div class="bg-dark p-8 rounded-xl border border-gray-800 hover:border-primary/50 transition-all duration-300 hover:shadow-lg hover:shadow-primary/10">
<div class="w-14 h-14 mb-6 rounded-full bg-primary/10 flex items-center justify-center">
<i data-feather="film" class="text-primary"></i>
</div>
<h3 class="text-xl font-bold mb-4 text-white">Kickstarter Videos & Animation</h3>
<p class="text-gray-400">Captivating animations that boost your campaign's success with compelling storytelling.</p>
</div>
<!-- Service 2 -->
<div class="bg-dark p-8 rounded-xl border border-gray-800 hover:border-primary/50 transition-all duration-300 hover:shadow-lg hover:shadow-primary/10">
<div class="w-14 h-14 mb-6 rounded-full bg-primary/10 flex items-center justify-center">
<i data-feather="package" class="text-primary"></i>
</div>
<h3 class="text-xl font-bold mb-4 text-white">Board Game & Card Game Design</h3>
<p class="text-gray-400">Complete design solutions from concept to production-ready assets.</p>
</div>
<!-- Service 3 -->
<div class="bg-dark p-8 rounded-xl border border-gray-800 hover:border-primary/50 transition-all duration-300 hover:shadow-lg hover:shadow-primary/10">
<div class="w-14 h-14 mb-6 rounded-full bg-primary/10 flex items-center justify-center">
<i data-feather="cpu" class="text-primary"></i>
</div>
<h3 class="text-xl font-bold mb-4 text-white">AI Art & Concept Design</h3>
<p class="text-gray-400">Leverage cutting-edge AI tools to rapidly prototype and iterate designs.</p>
</div>
<!-- Service 4 -->
<div class="bg-dark p-8 rounded-xl border border-gray-800 hover:border-primary/50 transition-all duration-300 hover:shadow-lg hover:shadow-primary/10">
<div class="w-14 h-14 mb-6 rounded-full bg-primary/10 flex items-center justify-center">
<i data-feather="box" class="text-primary"></i>
</div>
<h3 class="text-xl font-bold mb-4 text-white">3D Mockups & Product Visualization</h3>
<p class="text-gray-400">Photorealistic renders that showcase your product before it exists.</p>
</div>
<!-- Service 5 -->
<div class="bg-dark p-8 rounded-xl border border-gray-800 hover:border-primary/50 transition-all duration-300 hover:shadow-lg hover:shadow-primary/10">
<div class="w-14 h-14 mb-6 rounded-full bg-primary/10 flex items-center justify-center">
<i data-feather="layers" class="text-primary"></i>
</div>
<h3 class="text-xl font-bold mb-4 text-white">Branding & Promo Materials</h3>
<p class="text-gray-400">Cohesive visual identities that make your brand instantly recognizable.</p>
</div>
</div>
</div>
</section>
<!-- Portfolio Section -->
<section id="portfolio" class="py-20 bg-dark">
<div class="container mx-auto px-6">
<h2 class="text-3xl md:text-4xl font-bold mb-16 text-center text-transparent bg-clip-text bg-gradient-to-r from-primary to-secondary">
Featured Projects
</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Project 1 -->
<div class="group relative overflow-hidden rounded-xl h-96">
<img src="http://static.photos/gaming/640x360/1" alt="Stoner Realms" class="w-full h-full object-cover transition-transform duration-500 group-hover:scale-110">
<div class="absolute inset-0 bg-gradient-to-t from-black/90 via-black/40 to-transparent p-6 flex flex-col justify-end">
<h3 class="text-2xl font-bold text-white mb-2">Stoner Realms</h3>
<p class="text-gray-300">Board game design and Kickstarter campaign</p>
<div class="mt-4 opacity-0 group-hover:opacity-100 transition-opacity duration-300">
<a href="#" class="text-primary hover:text-secondary">View Case Study →</a>
</div>
</div>
</div>
<!-- Project 2 -->
<div class="group relative overflow-hidden rounded-xl h-96">
<img src="http://static.photos/gaming/640x360/2" alt="Elemental Clash" class="w-full h-full object-cover transition-transform duration-500 group-hover:scale-110">
<div class="absolute inset-0 bg-gradient-to-t from-black/90 via-black/40 to-transparent p-6 flex flex-col justify-end">
<h3 class="text-2xl font-bold text-white mb-2">Elemental Clash</h3>
<p class="text-gray-300">Card game illustration and packaging design</p>
<div class="mt-4 opacity-0 group-hover:opacity-100 transition-opacity duration-300">
<a href="#" class="text-primary hover:text-secondary">View Case Study →</a>
</div>
</div>
</div>
<!-- Project 3 -->
<div class="group relative overflow-hidden rounded-xl h-96">
<img src="http://static.photos/gaming/640x360/3" alt="Jump the Shark" class="w-full h-full object-cover transition-transform duration-500 group-hover:scale-110">
<div class="absolute inset-0 bg-gradient-to-t from-black/90 via-black/40 to-transparent p-6 flex flex-col justify-end">
<h3 class="text-2xl font-bold text-white mb-2">Jump the Shark</h3>
<p class="text-gray-300">Party game animation and marketing materials</p>
<div class="mt-4 opacity-0 group-hover:opacity-100 transition-opacity duration-300">
<a href="#" class="text-primary hover:text-secondary">View Case Study →</a>
</div>
</div>
</div>
<!-- Project 4 -->
<div class="group relative overflow-hidden rounded-xl h-96">
<img src="http://static.photos/gaming/640x360/4" alt="Racket" class="w-full h-full object-cover transition-transform duration-500 group-hover:scale-110">
<div class="absolute inset-0 bg-gradient-to-t from-black/90 via-black/40 to-transparent p-6 flex flex-col justify-end">
<h3 class="text-2xl font-bold text-white mb-2">Racket</h3>
<p class="text-gray-300">Tabletop game branding and visual identity</p>
<div class="mt-4 opacity-0 group-hover:opacity-100 transition-opacity duration-300">
<a href="#" class="text-primary hover:text-secondary">View Case Study →</a>
</div>
</div>
</div>
<!-- Project 5 -->
<div class="group relative overflow-hidden rounded-xl h-96">
<img src="http://static.photos/gaming/640x360/5" alt="King of Kirt" class="w-full h-full object-cover transition-transform duration-500 group-hover:scale-110">
<div class="absolute inset-0 bg-gradient-to-t from-black/90 via-black/40 to-transparent p-6 flex flex-col justify-end">
<h3 class="text-2xl font-bold text-white mb-2">King of Kirt</h3>
<p class="text-gray-300">Strategy game components and 3D renders</p>
<div class="mt-4 opacity-0 group-hover:opacity-100 transition-opacity duration-300">
<a href="#" class="text-primary hover:text-secondary">View Case Study →</a>
</div>
</div>
</div>
<!-- Project 6 -->
<div class="group relative overflow-hidden rounded-xl h-96">
<div class="w-full h-full bg-gradient-to-br from-primary/20 to-secondary/20 flex items-center justify-center">
<div class="text-center p-6">
<h3 class="text-2xl font-bold text-white mb-4">Your Project Here</h3>
<a href="#contact" class="inline-block px-6 py-3 rounded-full bg-white text-dark font-semibold hover:bg-gray-100 transition-all duration-300">
Let's Talk
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- AI Section -->
<section class="py-20 bg-gradient-to-r from-darker to-primary/10">
<div class="container mx-auto px-6">
<div class="max-w-4xl mx-auto text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-8 text-transparent bg-clip-text bg-gradient-to-r from-white to-secondary">
AI-Powered Creativity
</h2>
<p class="text-lg md:text-xl leading-relaxed text-gray-300 mb-12">
We integrate the latest AI tools to accelerate creative production while maintaining artistic integrity and human oversight.
</p>
<div class="flex flex-wrap justify-center gap-8">
<div class="bg-dark p-4 rounded-lg border border-gray-800 w-24 h-24 flex items-center justify-center">
<img src="https://upload.wikimedia.org/wikipedia/commons/0/04/ChatGPT_logo.svg" alt="ChatGPT" class="w-16">
</div>
<div class="bg-dark p-4 rounded-lg border border-gray-800 w-24 h-24 flex items-center justify-center">
<img src="https://upload.wikimedia.org/wikipedia/commons/3/3a/Midjourney_Emblem.png" alt="Midjourney" class="w-16">
</div>
<div class="bg-dark p-4 rounded-lg border border-gray-800 w-24 h-24 flex items-center justify-center">
<img src="https://upload.wikimedia.org/wikipedia/commons/1/1b/Runway_ML_logo.png" alt="Runway" class="w-16">
</div>
<div class="bg-dark p-4 rounded-lg border border-gray-800 w-24 h-24 flex items-center justify-center">
<img src="https://upload.wikimedia.org/wikipedia/commons/e/eb/ElevenLabs_logo.svg" alt="ElevenLabs" class="w-16">
</div>
<div class="bg-dark p-4 rounded-lg border border-gray-800 w-24 h-24 flex items-center justify-center">
<img src="https://upload.wikimedia.org/wikipedia/commons/3/3f/Sora_%28AI%29_logo.png" alt="Sora" class="w-16">
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 bg-dark">
<div class="container mx-auto px-6">
<div class="max-w-4xl mx-auto text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-8 text-transparent bg-clip-text bg-gradient-to-r from-primary to-secondary">
Let's Create Something Amazing
</h2>
<p class="text-xl md:text-2xl leading-relaxed text-gray-300 mb-12">
Ready to bring your creative vision to life? Get in touch with our team.
</p>
<div class="mb-12">
<a href="mailto:multimediaone.team@gmail.com" class="text-2xl font-semibold text-white hover:text-primary transition-colors duration-300">
multimediaone.team@gmail.com
</a>
</div>
<div class="flex justify-center gap-6">
<a href="#" class="w-12 h-12 rounded-full bg-gray-800 hover:bg-primary flex items-center justify-center transition-all duration-300">
<i data-feather="youtube" class="text-white"></i>
</a>
<a href="#" class="w-12 h-12 rounded-full bg-gray-800 hover:bg-pink-600 flex items-center justify-center transition-all duration-300">
<i data-feather="instagram" class="text-white"></i>
</a>
<a href="#" class="w-12 h-12 rounded-full bg-gray-800 hover:bg-blue-400 flex items-center justify-center transition-all duration-300">
<i data-feather="twitter" class="text-white"></i>
</a>
<a href="#" class="w-12 h-12 rounded-full bg-gray-800 hover:bg-green-500 flex items-center justify-center transition-all duration-300">
<i data-feather="dollar-sign" class="text-white"></i>
</a>
</div>
</div>
</div>
</section>
<!-- Footer Component -->
<custom-footer></custom-footer>
<!-- Scripts -->
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script>
feather.replace();
</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html> |