pixelpulse-pro / index.html
jonesfernandes's picture
Deixe o site moderno, bonito e responsivo
27d3502 verified
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PixelPulse Pro | Modern Web Experience</title>
<link rel="stylesheet" href="style.css">
<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: '#6366f1',
secondary: '#8b5cf6',
}
}
}
}
</script>
</head>
<body class="bg-gray-50 dark:bg-gray-900 transition-colors duration-300">
<custom-navbar></custom-navbar>
<main class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
<!-- Hero Section -->
<section class="text-center py-20">
<h1 class="text-5xl md:text-7xl font-bold text-gray-900 dark:text-white mb-6">
Modern <span class="text-primary-500">Design</span> Meets <span class="text-secondary-500">Function</span>
</h1>
<p class="text-xl text-gray-600 dark:text-gray-300 max-w-3xl mx-auto mb-10">
Crafting beautiful, responsive digital experiences that captivate and convert.
</p>
<div class="flex justify-center gap-4">
<a href="#features" class="bg-primary-500 hover:bg-primary-600 text-white px-8 py-3 rounded-full font-medium transition-all transform hover:scale-105">
Explore Features
</a>
<a href="#contact" class="border-2 border-gray-300 dark:border-gray-600 text-gray-700 dark:text-gray-300 px-8 py-3 rounded-full font-medium transition-all hover:bg-gray-100 dark:hover:bg-gray-800">
Get Started
</a>
</div>
</section>
<!-- Features Section -->
<section id="features" class="py-20">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-900 dark:text-white mb-4">Powerful Features</h2>
<p class="text-gray-600 dark:text-gray-300 max-w-2xl mx-auto">Everything you need to build modern web applications</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="bg-white dark:bg-gray-800 p-8 rounded-xl shadow-lg hover:shadow-xl transition-shadow">
<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="zap" class="text-primary-500 w-6 h-6"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 dark:text-white mb-3">Lightning Fast</h3>
<p class="text-gray-600 dark:text-gray-300">Optimized performance for instant page loads and smooth interactions.</p>
</div>
<!-- Feature 2 -->
<div class="bg-white dark:bg-gray-800 p-8 rounded-xl shadow-lg hover:shadow-xl transition-shadow">
<div class="w-14 h-14 bg-secondary-100 dark:bg-secondary-900 rounded-lg flex items-center justify-center mb-6">
<i data-feather="smartphone" class="text-secondary-500 w-6 h-6"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 dark:text-white mb-3">Fully Responsive</h3>
<p class="text-gray-600 dark:text-gray-300">Looks perfect on any device, from mobile to desktop.</p>
</div>
<!-- Feature 3 -->
<div class="bg-white dark:bg-gray-800 p-8 rounded-xl shadow-lg hover:shadow-xl transition-shadow">
<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="moon" class="text-primary-500 w-6 h-6"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 dark:text-white mb-3">Dark Mode</h3>
<p class="text-gray-600 dark:text-gray-300">Elegant dark theme that's easy on the eyes.</p>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-20 bg-gradient-to-r from-primary-500 to-secondary-500 rounded-3xl text-center text-white px-8">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Transform Your Digital Presence?</h2>
<p class="text-lg mb-8 max-w-2xl mx-auto opacity-90">Join thousands of satisfied customers who've elevated their online experience.</p>
<a href="#contact" class="inline-block bg-white text-primary-500 px-8 py-3 rounded-full font-bold hover:bg-gray-100 transition-all transform hover:scale-105">
Get Started Today
</a>
</section>
</main>
<custom-footer></custom-footer>
<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>