hustle-academy / index.html
zman6969's picture
Add 3 files
2388677 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hustle Academy | Turn Skills Into Income</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#2563eb',
secondary: '#10b981',
accent: '#f59e0b',
dark: '#1e293b',
light: '#f8fafc'
}
}
}
}
</script>
<style>
.hero-gradient {
background: linear-gradient(135deg, #2563eb 0%, #10b981 100%);
}
.course-card: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);
}
.popup {
animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
</style>
</head>
<body class="font-sans bg-gray-50">
<!-- Top Bar -->
<div class="bg-dark text-white py-2 px-4 flex justify-between items-center text-sm">
<div>🔥 New: "30 Days to Your First $1K" Course Just Launched!</div>
<div class="flex space-x-4">
<a href="#" class="hover:text-accent transition"><i class="fas fa-search mr-1"></i> Search</a>
<a href="#" class="hover:text-accent transition"><i class="fas fa-user mr-1"></i> Login</a>
</div>
</div>
<!-- Navigation -->
<nav class="bg-white shadow-sm sticky top-0 z-10">
<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-shrink-0 flex items-center">
<i class="fas fa-bolt text-accent text-2xl mr-2"></i>
<span class="text-xl font-bold text-dark">Hustle Academy</span>
</a>
</div>
<div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
<a href="#" class="text-dark hover:text-primary px-3 py-2 font-medium">Home</a>
<a href="#courses" class="text-dark hover:text-primary px-3 py-2 font-medium">Courses</a>
<a href="#blog" class="text-dark hover:text-primary px-3 py-2 font-medium">Blog</a>
<a href="#resources" class="text-dark hover:text-primary px-3 py-2 font-medium">Resources</a>
<a href="#about" class="text-dark hover:text-primary px-3 py-2 font-medium">About</a>
<a href="#contact" class="text-dark hover:text-primary px-3 py-2 font-medium">Contact</a>
</div>
<div class="flex items-center">
<a href="#" class="bg-primary hover:bg-blue-700 text-white px-4 py-2 rounded-md font-medium transition">
Free Starter Guide
</a>
<button class="md:hidden ml-4 text-dark">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="hero-gradient text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20 md:py-28">
<div class="md:flex items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<h1 class="text-4xl md:text-5xl font-bold leading-tight mb-6">Turn Your Free Time Into Full-Time Income With Online Courses!</h1>
<p class="text-xl mb-8 opacity-90">Discover how everyday people are building profitable side hustles from home. Get our free starter guide and begin your journey today.</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<a href="#" class="bg-accent hover:bg-yellow-600 text-white px-6 py-3 rounded-md font-bold text-lg text-center transition">
Get Free Guide <i class="fas fa-arrow-right ml-2"></i>
</a>
<a href="#courses" class="bg-white hover:bg-gray-100 text-primary px-6 py-3 rounded-md font-bold text-lg text-center transition">
Explore Courses
</a>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<img src="https://images.unsplash.com/photo-1542744173-8e7e53415bb0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80"
alt="Person working on laptop"
class="rounded-lg shadow-xl w-full max-w-md">
</div>
</div>
</div>
</section>
<!-- Stats Section -->
<section class="bg-white py-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 text-center">
<div class="p-4">
<div class="text-4xl font-bold text-primary mb-2">10,000+</div>
<div class="text-dark opacity-80">Students Helped</div>
</div>
<div class="p-4">
<div class="text-4xl font-bold text-secondary mb-2">$5M+</div>
<div class="text-dark opacity-80">Earned by Students</div>
</div>
<div class="p-4">
<div class="text-4xl font-bold text-accent mb-2">50+</div>
<div class="text-dark opacity-80">Courses Available</div>
</div>
<div class="p-4">
<div class="text-4xl font-bold text-primary mb-2">24/7</div>
<div class="text-dark opacity-80">Community Support</div>
</div>
</div>
</div>
</section>
<!-- Courses Section -->
<section id="courses" class="py-16 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-dark mb-4">Start Learning Today</h2>
<p class="text-lg text-gray-600 max-w-2xl mx-auto">Our most popular courses to help you launch and grow your side hustle fast.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Course 1 -->
<div class="bg-white rounded-lg overflow-hidden shadow-md course-card transition duration-300">
<img src="https://images.unsplash.com/photo-1501504905252-473c47e087f8?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1074&q=80"
alt="Online Course" class="w-full h-48 object-cover">
<div class="p-6">
<div class="flex justify-between items-center mb-2">
<span class="bg-blue-100 text-primary text-xs font-semibold px-2.5 py-0.5 rounded">BESTSELLER</span>
<span class="text-gray-500 text-sm">4.9 ★ (128)</span>
</div>
<h3 class="text-xl font-bold text-dark mb-2">How to Build Your First Online Course in 30 Days</h3>
<p class="text-gray-600 mb-4">Step-by-step blueprint to create and sell your first online course even if you're starting from scratch.</p>
<div class="flex justify-between items-center">
<span class="font-bold text-dark">$97</span>
<a href="#" class="text-primary hover:text-blue-700 font-medium">Enroll Now →</a>
</div>
</div>
</div>
<!-- Course 2 -->
<div class="bg-white rounded-lg overflow-hidden shadow-md course-card transition duration-300">
<img src="https://images.unsplash.com/photo-1611162617213-7d7a39e9b1d7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1074&q=80"
alt="Affiliate Marketing" class="w-full h-48 object-cover">
<div class="p-6">
<div class="flex justify-between items-center mb-2">
<span class="bg-green-100 text-secondary text-xs font-semibold px-2.5 py-0.5 rounded">POPULAR</span>
<span class="text-gray-500 text-sm">4.7 ★ (95)</span>
</div>
<h3 class="text-xl font-bold text-dark mb-2">Getting Started with Affiliate Marketing</h3>
<p class="text-gray-600 mb-4">Learn how to earn commissions by promoting other people's products without creating your own.</p>
<div class="flex justify-between items-center">
<span class="font-bold text-dark">$67</span>
<a href="#" class="text-primary hover:text-blue-700 font-medium">Enroll Now →</a>
</div>
</div>
</div>
<!-- Course 3 -->
<div class="bg-white rounded-lg overflow-hidden shadow-md course-card transition duration-300">
<img src="https://images.unsplash.com/photo-1601784551446-20c9e07cdbdb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80"
alt="Freelance Writing" class="w-full h-48 object-cover">
<div class="p-6">
<div class="flex justify-between items-center mb-2">
<span class="bg-yellow-100 text-accent text-xs font-semibold px-2.5 py-0.5 rounded">NEW</span>
<span class="text-gray-500 text-sm">4.8 ★ (42)</span>
</div>
<h3 class="text-xl font-bold text-dark mb-2">Launch a Freelance Writing Business in 60 Days</h3>
<p class="text-gray-600 mb-4">Complete system to start getting paid for your writing skills, even with no prior experience.</p>
<div class="flex justify-between items-center">
<span class="font-bold text-dark">$87</span>
<a href="#" class="text-primary hover:text-blue-700 font-medium">Enroll Now →</a>
</div>
</div>
</div>
</div>
<div class="text-center mt-12">
<a href="#" class="inline-block bg-primary hover:bg-blue-700 text-white px-6 py-3 rounded-md font-bold transition">
View All Courses <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-dark mb-4">Success Stories</h2>
<p class="text-lg text-gray-600 max-w-2xl mx-auto">Real people achieving real results with our courses and resources.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="bg-gray-50 p-6 rounded-lg">
<div class="flex items-center mb-4">
<img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Sarah J." class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold text-dark">Sarah J.</h4>
<p class="text-gray-500 text-sm">Freelance Writer</p>
</div>
</div>
<p class="text-gray-700 italic">"The freelance writing course changed everything for me. I went from zero to making $3,000/month in just 4 months while still working my day job."</p>
<div class="mt-4 text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<!-- Testimonial 2 -->
<div class="bg-gray-50 p-6 rounded-lg">
<div class="flex items-center mb-4">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Michael T." class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold text-dark">Michael T.</h4>
<p class="text-gray-500 text-sm">Online Course Creator</p>
</div>
</div>
<p class="text-gray-700 italic">"I followed the 30-day course creation blueprint and made $8,200 in my first 3 months. Now I'm working on my third course and making more than my corporate job."</p>
<div class="mt-4 text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<!-- Testimonial 3 -->
<div class="bg-gray-50 p-6 rounded-lg">
<div class="flex items-center mb-4">
<img src="https://randomuser.me/api/portraits/women/63.jpg" alt="Lisa M." class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold text-dark">Lisa M.</h4>
<p class="text-gray-500 text-sm">Affiliate Marketer</p>
</div>
</div>
<p class="text-gray-700 italic">"The affiliate marketing course showed me exactly what to do. I went from $0 to $1,500/month in passive income in 6 months. Best investment I've ever made!"</p>
<div class="mt-4 text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
</div>
</div>
</div>
</section>
<!-- Blog Section -->
<section id="blog" class="py-16 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-dark mb-4">Latest From The Blog</h2>
<p class="text-lg text-gray-600 max-w-2xl mx-auto">Actionable strategies, case studies, and tips to grow your side hustle.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Blog Post 1 -->
<div class="bg-white rounded-lg overflow-hidden shadow-md">
<img src="https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80"
alt="10 Easiest Side Hustles" class="w-full h-48 object-cover">
<div class="p-6">
<div class="text-secondary font-semibold text-sm mb-2">SIDE HUSTLES</div>
<h3 class="text-xl font-bold text-dark mb-3">10 Easiest Side Hustles You Can Start Today</h3>
<p class="text-gray-600 mb-4">Discover low-barrier opportunities that require minimal startup costs and can generate income quickly.</p>
<div class="flex justify-between items-center">
<span class="text-gray-500 text-sm">June 12, 2023</span>
<a href="#" class="text-primary hover:text-blue-700 font-medium">Read More →</a>
</div>
</div>
</div>
<!-- Blog Post 2 -->
<div class="bg-white rounded-lg overflow-hidden shadow-md">
<img src="https://images.unsplash.com/photo-1542744173-8e7e53415bb0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80"
alt="Turn Hobbies Into Courses" class="w-full h-48 object-cover">
<div class="p-6">
<div class="text-secondary font-semibold text-sm mb-2">ONLINE COURSES</div>
<h3 class="text-xl font-bold text-dark mb-3">How to Turn Your Hobbies Into Online Courses</h3>
<p class="text-gray-600 mb-4">Learn how to package your knowledge and skills into profitable digital products people will pay for.</p>
<div class="flex justify-between items-center">
<span class="text-gray-500 text-sm">May 28, 2023</span>
<a href="#" class="text-primary hover:text-blue-700 font-medium">Read More →</a>
</div>
</div>
</div>
<!-- Blog Post 3 -->
<div class="bg-white rounded-lg overflow-hidden shadow-md">
<img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80"
alt="Passive Income" class="w-full h-48 object-cover">
<div class="p-6">
<div class="text-secondary font-semibold text-sm mb-2">PASSIVE INCOME</div>
<h3 class="text-xl font-bold text-dark mb-3">5 Ways to Build Passive Income with Digital Products</h3>
<p class="text-gray-600 mb-4">Strategies to create income streams that keep paying you while you sleep, with real-world examples.</p>
<div class="flex justify-between items-center">
<span class="text-gray-500 text-sm">May 15, 2023</span>
<a href="#" class="text-primary hover:text-blue-700 font-medium">Read More →</a>
</div>
</div>
</div>
</div>
<div class="mt-12 grid grid-cols-1 md:grid-cols-2 gap-6">
<!-- More Blog Posts List -->
<div class="bg-white p-6 rounded-lg shadow-md">
<h3 class="text-xl font-bold text-dark mb-4">Popular Articles</h3>
<ul class="space-y-4">
<li class="border-b border-gray-100 pb-3">
<a href="#" class="text-dark hover:text-primary font-medium">Case Study: How I Made My First $1,000 Selling Online</a>
</li>
<li class="border-b border-gray-100 pb-3">
<a href="#" class="text-dark hover:text-primary font-medium">Top 7 Mistakes First-Time Entrepreneurs Make</a>
</li>
<li class="border-b border-gray-100 pb-3">
<a href="#" class="text-dark hover:text-primary font-medium">The Ultimate Beginner's Guide to Freelance Writing</a>
</li>
</ul>
</div>
<div class="bg-white p-6 rounded-lg shadow-md">
<h3 class="text-xl font-bold text-dark mb-4">Recent Articles</h3>
<ul class="space-y-4">
<li class="border-b border-gray-100 pb-3">
<a href="#" class="text-dark hover:text-primary font-medium">Best Side Hustles for Rural Areas and Small Towns</a>
</li>
<li class="border-b border-gray-100 pb-3">
<a href="#" class="text-dark hover:text-primary font-medium">Building a Side Hustle While Working Full-Time: Tips and Tricks</a>
</li>
<li class="border-b border-gray-100 pb-3">
<a href="#" class="text-dark hover:text-primary font-medium">Affiliate Marketing 101: How Beginners Can Make Money</a>
</li>
<li>
<a href="#" class="text-dark hover:text-primary font-medium">AI Tools You Can Use to Supercharge Your Side Hustle</a>
</li>
</ul>
</div>
</div>
<div class="text-center mt-12">
<a href="#" class="inline-block bg-primary hover:bg-blue-700 text-white px-6 py-3 rounded-md font-bold transition">
Read All Articles <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-16 bg-primary text-white">
<div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<h2 class="text-3xl font-bold mb-6">Ready to Launch Your Side Hustle?</h2>
<p class="text-xl mb-8 opacity-90">Get our free Side Hustle Starter Guide and begin your journey to financial freedom today.</p>
<div class="max-w-md mx-auto bg-white rounded-lg shadow-xl overflow-hidden">
<div class="p-6">
<h3 class="text-dark text-xl font-bold mb-4">What's Inside:</h3>
<ul class="text-gray-700 space-y-2 mb-6">
<li class="flex items-start">
<i class="fas fa-check-circle text-secondary mr-2 mt-1"></i>
<span>5 proven side hustle ideas you can start this week</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-secondary mr-2 mt-1"></i>
<span>Step-by-step action plan for your first 30 days</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-secondary mr-2 mt-1"></i>
<span>Resource list of must-have tools (with discounts)</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-secondary mr-2 mt-1"></i>
<span>Case studies of successful side hustlers</span>
</li>
</ul>
<form class="space-y-4">
<div>
<label for="email" class="sr-only">Email Address</label>
<input type="email" id="email" placeholder="Enter your email"
class="w-full px-4 py-3 rounded-md border border-gray-300 focus:outline-none focus:ring-2 focus:ring-primary focus:border-transparent text-dark">
</div>
<button type="submit"
class="w-full bg-secondary hover:bg-green-700 text-white px-6 py-3 rounded-md font-bold transition">
Get Free Guide Now
</button>
</form>
<p class="text-xs text-gray-500 mt-3">We respect your privacy. Unsubscribe at any time.</p>
</div>
</div>
</div>
</section>
<!-- Resources Section -->
<section id="resources" class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-dark mb-4">Recommended Resources</h2>
<p class="text-lg text-gray-600 max-w-2xl mx-auto">Tools and services we personally use and recommend to grow your business.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-5 gap-6">
<!-- Resource 1 -->
<div class="bg-gray-50 p-6 rounded-lg border border-gray-200 hover:border-primary transition">
<div class="flex justify-center mb-4">
<img src="https://teachablecdn.com/images/brand-assets/logo-horizontal-black.png"
alt="Teachable" class="h-8 object-contain">
</div>
<p class="text-gray-700 mb-4">The easiest platform to create and sell your online courses with no technical skills required.</p>
<a href="#" class="text-primary hover:text-blue-700 font-medium inline-flex items-center">
Learn More <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<!-- Resource 2 -->
<div class="bg-gray-50 p-6 rounded-lg border border-gray-200 hover:border-primary transition">
<div class="flex justify-center mb-4">
<img src="https://www.bluehost.com/content/bluehost-v3/images/bluehost-logo-1x.png"
alt="Bluehost" class="h-8 object-contain">
</div>
<p class="text-gray-700 mb-4">Reliable web hosting with one-click WordPress install. Perfect for building your side hustle website.</p>
<a href="#" class="text-primary hover:text-blue-700 font-medium inline-flex items-center">
Learn More <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<!-- Resource 3 -->
<div class="bg-gray-50 p-6 rounded-lg border border-gray-200 hover:border-primary transition">
<div class="flex justify-center mb-4">
<img src="https://convertkit.com/assets/images/convertkit-logo-black.svg"
alt="ConvertKit" class="h-8 object-contain">
</div>
<p class="text-gray-700 mb-4">Email marketing platform designed specifically for creators and online entrepreneurs.</p>
<a href="#" class="text-primary hover:text-blue-700 font-medium inline-flex items-center">
Learn More <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<!-- Resource 4 -->
<div class="bg-gray-50 p-6 rounded-lg border border-gray-200 hover:border-primary transition">
<div class="flex justify-center mb-4">
<img src="https://upload.wikimedia.org/wikipedia/commons/0/0a/Fiverr_logo.svg"
alt="Fiverr" class="h-8 object-contain">
</div>
<p class="text-gray-700 mb-4">Outsource tasks and projects to talented freelancers at affordable prices.</p>
<a href="#" class="text-primary hover:text-blue-700 font-medium inline-flex items-center">
Learn More <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<!-- Resource 5 -->
<div class="bg-gray-50 p-6 rounded-lg border border-gray-200 hover:border-primary transition">
<div class="flex justify-center mb-4">
<img src="https://upload.wikimedia.org/wikipedia/commons/0/08/Canva_icon_2021.svg"
alt="Canva" class="h-8 object-contain">
</div>
<p class="text-gray-700 mb-4">Create stunning graphics, presentations, and marketing materials with no design experience needed.</p>
<a href="#" class="text-primary hover:text-blue-700 font-medium inline-flex items-center">
Learn More <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<div class="text-center mt-12">
<a href="#" class="inline-block bg-primary hover:bg-blue-700 text-white px-6 py-3 rounded-md font-bold transition">
View All Resources <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-16 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="md:flex items-center">
<div class="md:w-1/2 mb-10 md:mb-0 md:pr-10">
<h2 class="text-3xl font-bold text-dark mb-6">About Hustle Academy</h2>
<p class="text-gray-700 mb-4">We believe everyone deserves the opportunity to create additional income streams and achieve financial freedom on their own terms.</p>
<p class="text-gray-700 mb-6">Founded in 2018, Hustle Academy has helped over 10,000 students launch profitable side hustles through our courses, resources, and community support.</p>
<div class="flex space-x-4">
<a href="#" class="bg-primary hover:bg-blue-700 text-white px-6 py-2 rounded-md font-medium transition">
Our Story
</a>
<a href="#" class="border border-primary text-primary hover:bg-blue-50 px-6 py-2 rounded-md font-medium transition">
Meet The Team
</a>
</div>
</div>
<div class="md:w-1/2">
<img src="https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80"
alt="Team working together"
class="rounded-lg shadow-xl w-full">
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-dark text-white pt-16 pb-8">
<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 mb-12">
<div>
<a href="#" class="flex items-center mb-6">
<i class="fas fa-bolt text-accent text-2xl mr-2"></i>
<span class="text-xl font-bold">Hustle Academy</span>
</a>
<p class="text-gray-400 mb-4">Helping you turn skills into income through online courses and side hustle education.</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-youtube"></i>
</a>
</div>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Courses</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">All Courses</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Course Creation</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Affiliate Marketing</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Freelance Writing</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Print-on-Demand</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Resources</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Blog</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Free Guides</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Tools</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Community</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Success Stories</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Company</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">About Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Contact</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Privacy Policy</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Terms of Service</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Affiliate Disclosure</a></li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 mb-4 md:mb-0">© 2023 Hustle Academy. All rights reserved.</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white transition">Privacy Policy</a>
<a href="#" class="text-gray-400 hover:text-white transition">Terms of Service</a>
<a href="#" class="text-gray-400 hover:text-white transition">Contact Us</a>
</div>
</div>
</div>
</footer>
<!-- Popup -->
<div id="popup" class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50 hidden">
<div class="bg-white rounded-lg shadow-xl max-w-md w-full popup">
<div class="p-6">
<div class="flex justify-between items-center mb-4">
<h3 class="text-xl font-bold text-dark">Get Your Free Side Hustle Starter Guide</h3>
<button id="close-popup" class="text-gray-500 hover:text-gray-700">
<i class="fas fa-times"></i>
</button>
</div>
<p class="text-gray-600 mb-4">Enter your email below to receive our free guide packed with side hustle ideas and strategies.</p>
<form class="space-y-4">
<div>
<input type="email" placeholder="Your email address"
class="w-full px-4 py-3 rounded-md border border-gray-300 focus:outline-none focus:ring-2 focus:ring-primary focus:border-transparent text-dark">
</div>
<button type="submit"
class="w-full bg-primary hover:bg-blue-700 text-white px-6 py-3 rounded-md font-bold transition">
Send Me The Guide
</button>
</form>
<p class="text-xs text-gray-500 mt-3">We respect your privacy. Unsubscribe at any time.</p>
</div>
</div>
</div>
<script>
// Show popup after 5 seconds
setTimeout(function() {
document.getElementById('popup').classList.remove('hidden');
}, 5000);
// Close popup
document.getElementById('close-popup').addEventListener('click', function() {
document.getElementById('popup').classList.add('hidden');
});
// Mobile menu toggle would go here
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=zman6969/hustle-academy" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>