pixelpulse-portal / index.html
mohanbhat379's picture
deploy it
5a73a70 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PixelPulse Portal</title>
<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 src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
overflow-x: hidden;
}
.hero-gradient {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.card-hover: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);
}
</style>
</head>
<body class="bg-gray-50">
<!-- Vanta.js Globe Background -->
<div id="vanta-globe" class="fixed inset-0 -z-10"></div>
<!-- Navigation -->
<nav class="bg-white/80 backdrop-blur-md shadow-sm fixed w-full z-50">
<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">
<div class="flex-shrink-0 flex items-center">
<i data-feather="zap" class="text-indigo-600 w-6 h-6"></i>
<span class="ml-2 text-xl font-bold text-gray-900">PixelPulse</span>
</div>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="#" class="text-gray-900 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Home</a>
<a href="#" class="text-gray-900 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Features</a>
<a href="#" class="text-gray-900 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Pricing</a>
<a href="#" class="text-gray-900 hover:text-indigo-600 px-3 py-2 text-sm font-medium">About</a>
<button class="bg-indigo-600 hover:bg-indigo-700 text-white px-4 py-2 rounded-md text-sm font-medium transition duration-300">Get Started</button>
</div>
<div class="md:hidden flex items-center">
<button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-700 hover:text-indigo-600 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-indigo-500" aria-controls="mobile-menu" aria-expanded="false">
<i data-feather="menu"></i>
</button>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="hero-gradient min-h-screen flex items-center justify-center pt-16 pb-20 px-4 sm:px-6 lg:px-8 text-white">
<div class="max-w-7xl mx-auto text-center">
<h1 class="text-4xl sm:text-5xl md:text-6xl font-bold mb-6 animate-slide-up">Welcome to <span class="bg-clip-text text-transparent bg-gradient-to-r from-yellow-400 to-pink-500">PixelPulse</span></h1>
<p class="text-xl sm:text-2xl max-w-3xl mx-auto mb-10 opacity-90">Where design meets innovation in a symphony of pixels and code. We craft digital experiences that leave lasting impressions.</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<button class="bg-white text-indigo-600 hover:bg-gray-100 px-8 py-3 rounded-md text-lg font-semibold transition duration-300 shadow-lg">Explore More</button>
<button class="bg-transparent border-2 border-white hover:bg-white/10 px-8 py-3 rounded-md text-lg font-semibold transition duration-300 flex items-center justify-center gap-2">
<i data-feather="play-circle"></i> Watch Demo
</button>
</div>
</div>
</section>
<!-- Features Section -->
<section class="py-20 bg-white">
<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 sm:text-4xl font-bold text-gray-900 mb-4">Amazing Features</h2>
<p class="text-lg text-gray-600 max-w-2xl mx-auto">Experience the power of our platform with these incredible features designed for modern creators.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="bg-gray-50 p-8 rounded-xl transition duration-300 card-hover">
<div class="w-14 h-14 bg-indigo-100 rounded-lg flex items-center justify-center mb-6">
<i data-feather="cpu" class="w-6 h-6 text-indigo-600"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Lightning Fast</h3>
<p class="text-gray-600">Optimized for speed and performance with cutting-edge technology stack.</p>
</div>
<!-- Feature 2 -->
<div class="bg-gray-50 p-8 rounded-xl transition duration-300 card-hover">
<div class="w-14 h-14 bg-pink-100 rounded-lg flex items-center justify-center mb-6">
<i data-feather="edit" class="w-6 h-6 text-pink-600"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Custom Design</h3>
<p class="text-gray-600">Tailored solutions that match your brand identity perfectly.</p>
</div>
<!-- Feature 3 -->
<div class="bg-gray-50 p-8 rounded-xl transition duration-300 card-hover">
<div class="w-14 h-14 bg-blue-100 rounded-lg flex items-center justify-center mb-6">
<i data-feather="shield" class="w-6 h-6 text-blue-600"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Secure Platform</h3>
<p class="text-gray-600">Enterprise-grade security to protect your data and privacy.</p>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-20 bg-gray-50">
<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 sm:text-4xl font-bold text-gray-900 mb-4">What People Say</h2>
<p class="text-lg text-gray-600 max-w-2xl mx-auto">Don't just take our word for it. Here's what our clients say about us.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="bg-white p-8 rounded-xl shadow-sm">
<div class="flex items-center mb-6">
<img src="http://static.photos/people/200x200/1" alt="Sarah Johnson" class="w-12 h-12 rounded-full object-cover">
<div class="ml-4">
<h4 class="font-bold text-gray-900">Sarah Johnson</h4>
<p class="text-indigo-600 text-sm">CEO, TechSolutions</p>
</div>
</div>
<p class="text-gray-600">"PixelPulse transformed our online presence completely. Their attention to detail is remarkable!"</p>
<div class="flex mt-4">
<i data-feather="star" class="w-4 h-4 text-yellow-400 fill-yellow-400"></i>
<i data-feather="star" class="w-4 h-4 text-yellow-400 fill-yellow-400"></i>
<i data-feather="star" class="w-4 h-4 text-yellow-400 fill-yellow-400"></i>
<i data-feather="star" class="w-4 h-4 text-yellow-400 fill-yellow-400"></i>
<i data-feather="star" class="w-4 h-4 text-yellow-400 fill-yellow-400"></i>
</div>
</div>
<!-- Testimonial 2 -->
<div class="bg-white p-8 rounded-xl shadow-sm">
<div class="flex items-center mb-6">
<img src="http://static.photos/people/200x200/2" alt="Michael Chen" class="w-12 h-12 rounded-full object-cover">
<div class="ml-4">
<h4 class="font-bold text-gray-900">Michael Chen</h4>
<p class="text-indigo-600 text-sm">Marketing Director</p>
</div>
</div>
<p class="text-gray-600">"The team delivered beyond our expectations. Our conversion rates increased by 140% after the redesign."</p>
<div class="flex mt-4">
<i data-feather="star" class="w-4 h-4 text-yellow-400 fill-yellow-400"></i>
<i data-feather="star" class="w-4 h-4 text-yellow-400 fill-yellow-400"></i>
<i data-feather="star" class="w-4 h-4 text-yellow-400 fill-yellow-400"></i>
<i data-feather="star" class="w-4 h-4 text-yellow-400 fill-yellow-400"></i>
<i data-feather="star" class="w-4 h-4 text-yellow-400"></i>
</div>
</div>
<!-- Testimonial 3 -->
<div class="bg-white p-8 rounded-xl shadow-sm">
<div class="flex items-center mb-6">
<img src="http://static.photos/people/200x200/3" alt="Emily Rodriguez" class="w-12 h-12 rounded-full object-cover">
<div class="ml-4">
<h4 class="font-bold text-gray-900">Emily Rodriguez</h4>
<p class="text-indigo-600 text-sm">Founder, CreativeMinds</p>
</div>
</div>
<p class="text-gray-600">"Working with PixelPulse was a game-changer. Their creative approach solved problems we didn't even know we had."</p>
<div class="flex mt-4">
<i data-feather="star" class="w-4 h-4 text-yellow-400 fill-yellow-400"></i>
<i data-feather="star" class="w-4 h-4 text-yellow-400 fill-yellow-400"></i>
<i data-feather="star" class="w-4 h-4 text-yellow-400 fill-yellow-400"></i>
<i data-feather="star" class="w-4 h-4 text-yellow-400 fill-yellow-400"></i>
<i data-feather="star" class="w-4 h-4 text-yellow-400 fill-yellow-400"></i>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-20 bg-indigo-600 text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<h2 class="text-3xl sm:text-4xl font-bold mb-6">Ready to Transform Your Digital Presence?</h2>
<p class="text-xl max-w-3xl mx-auto mb-10 opacity-90">Join thousands of satisfied clients who have elevated their brands with PixelPulse.</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<button class="bg-white text-indigo-600 hover:bg-gray-100 px-8 py-3 rounded-md text-lg font-semibold transition duration-300 shadow-lg">Get Started</button>
<button class="bg-transparent border-2 border-white hover:bg-white/10 px-8 py-3 rounded-md text-lg font-semibold transition duration-300 flex items-center justify-center gap-2">
<i data-feather="message-circle"></i> Contact Us
</button>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-16">
<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-12">
<div>
<div class="flex items-center mb-6">
<i data-feather="zap" class="text-indigo-400 w-6 h-6"></i>
<span class="ml-2 text-xl font-bold">PixelPulse</span>
</div>
<p class="text-gray-400 mb-6">Crafting digital experiences that inspire and engage.</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white transition duration-300"><i data-feather="twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300"><i data-feather="linkedin"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300"><i data-feather="instagram"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300"><i data-feather="github"></i></a>
</div>
</div>
<div>
<h4 class="text-lg font-semibold mb-6">Product</h4>
<ul class="space-y-3">
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Features</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Pricing</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Case Studies</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Updates</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-6">Company</h4>
<ul class="space-y-3">
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">About</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Careers</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Blog</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Press</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-6">Support</h4>
<ul class="space-y-3">
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Help Center</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Contact Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Privacy Policy</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Terms of Service</a></li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 mt-16 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 text-sm mb-4 md:mb-0">© 2023 PixelPulse. All rights reserved.</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white text-sm transition duration-300">Privacy Policy</a>
<a href="#" class="text-gray-400 hover:text-white text-sm transition duration-300">Terms of Service</a>
<a href="#" class="text-gray-400 hover:text-white text-sm transition duration-300">Cookies</a>
</div>
</div>
</div>
</footer>
<script>
// Initialize Vanta.js globe
VANTA.GLOBE({
el: "#vanta-globe",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
color: 0x3f83f8,
backgroundColor: 0xf8fafc
});
// Initialize feather icons
feather.replace();
// Simple animation for hero text
document.addEventListener('DOMContentLoaded', () => {
const heroText = document.querySelector('.animate-slide-up');
heroText.style.opacity = '0';
heroText.style.transform = 'translateY(20px)';
setTimeout(() => {
heroText.style.transition = 'opacity 0.6s ease-out, transform 0.6s ease-out';
heroText.style.opacity = '1';
heroText.style.transform = 'translateY(0)';
}, 200);
});
</script>
</body>
</html>