cosmic-brand-blastoff / index.html
RedVisionMusic's picture
import HeroSection from "@/components/HeroSection";
42ad5f3 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DigitalElevate | Modern Web Solutions</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: '#ef4444', // red-500
}
}
}
}
</script>
</head>
<body class="bg-gray-50">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4">
<hero-section></hero-section>
<marketing-agency-section></marketing-agency-section>
<divisions-section></divisions-section>
<fashion-section></fashion-section>
<technology-section></technology-section>
<overview-section-new></overview-section-new>
<gallery-section-new></gallery-section-new>
<about-section-new></about-section-new>
<section class="cta-section bg-gradient-to-r from-red-500 to-red-600 rounded-2xl p-12 text-center text-white my-12">
<h2 class="text-3xl font-bold mb-6">Ready to Transform Your Digital Presence?</h2>
<p class="text-xl mb-8 max-w-2xl mx-auto">Let's work together to create something amazing for your business.</p>
<a href="#" class="inline-block bg-white text-primary hover:bg-gray-100 px-10 py-4 rounded-lg font-bold text-lg shadow-lg transition duration-300">Get in Touch</a>
</section>
</main>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="components/hero-section.js"></script>
<script src="components/marketing-agency-section.js"></script>
<script src="components/divisions-section.js"></script>
<script src="components/fashion-section.js"></script>
<script src="components/technology-section.js"></script>
<script src="components/overview-section-new.js"></script>
<script src="components/gallery-section-new.js"></script>
<script src="components/about-section-new.js"></script>
<script src="script.js"></script>
<script>feather.replace();</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>