Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Ayo Station - Premium Advertising Platform</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: '#4F46E5', | |
| secondary: '#10B981', | |
| dark: '#1F2937', | |
| light: '#F9FAFB', | |
| }, | |
| fontFamily: { | |
| sans: ['Inter', 'sans-serif'], | |
| }, | |
| } | |
| } | |
| } | |
| </script> | |
| <style> | |
| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap'); | |
| body { | |
| font-family: 'Inter', sans-serif; | |
| } | |
| .hero-gradient { | |
| background: linear-gradient(135deg, #4F46E5 0%, #10B981 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); | |
| } | |
| .stat-card { | |
| transition: all 0.3s ease; | |
| } | |
| .stat-card:hover { | |
| transform: scale(1.05); | |
| } | |
| .testimonial-card { | |
| transition: all 0.3s ease; | |
| } | |
| .testimonial-card:hover { | |
| transform: translateY(-8px); | |
| } | |
| .pricing-card:hover { | |
| transform: scale(1.03); | |
| box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-gray-50"> | |
| <!-- Navigation --> | |
| <nav class="bg-white shadow-lg sticky top-0 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 class="fas fa-bullhorn text-primary text-2xl mr-2"></i> | |
| <span class="text-xl font-bold text-dark">Ayo Station</span> | |
| </div> | |
| <div class="hidden md:ml-10 md:flex md:space-x-8"> | |
| <a href="#" class="text-primary border-b-2 border-primary px-3 py-2 text-sm font-medium">Home</a> | |
| <a href="#" class="text-gray-500 hover:text-gray-700 px-3 py-2 text-sm font-medium">Features</a> | |
| <a href="#" class="text-gray-500 hover:text-gray-700 px-3 py-2 text-sm font-medium">Pricing</a> | |
| <a href="#" class="text-gray-500 hover:text-gray-700 px-3 py-2 text-sm font-medium">Advertisers</a> | |
| <a href="#" class="text-gray-500 hover:text-gray-700 px-3 py-2 text-sm font-medium">Publishers</a> | |
| </div> | |
| </div> | |
| <div class="hidden md:flex items-center space-x-4"> | |
| <a href="#" class="text-gray-500 hover:text-primary px-3 py-2 text-sm font-medium">Login</a> | |
| <a href="#" class="bg-primary hover:bg-indigo-700 text-white px-4 py-2 rounded-md text-sm font-medium">Get Started</a> | |
| </div> | |
| <div class="-mr-2 flex items-center md:hidden"> | |
| <button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-primary" aria-controls="mobile-menu" aria-expanded="false" id="mobile-menu-button"> | |
| <span class="sr-only">Open main menu</span> | |
| <i class="fas fa-bars"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Mobile menu --> | |
| <div class="hidden md:hidden" id="mobile-menu"> | |
| <div class="pt-2 pb-3 space-y-1"> | |
| <a href="#" class="bg-primary text-white block px-3 py-2 rounded-md text-base font-medium">Home</a> | |
| <a href="#" class="text-gray-500 hover:bg-gray-50 hover:text-gray-700 block px-3 py-2 rounded-md text-base font-medium">Features</a> | |
| <a href="#" class="text-gray-500 hover:bg-gray-50 hover:text-gray-700 block px-3 py-2 rounded-md text-base font-medium">Pricing</a> | |
| <a href="#" class="text-gray-500 hover:bg-gray-50 hover:text-gray-700 block px-3 py-2 rounded-md text-base font-medium">Advertisers</a> | |
| <a href="#" class="text-gray-500 hover:bg-gray-50 hover:text-gray-700 block px-3 py-2 rounded-md text-base font-medium">Publishers</a> | |
| <div class="border-t border-gray-200 pt-4 pb-3"> | |
| <div class="space-y-1"> | |
| <a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-gray-500 hover:bg-gray-50 hover:text-gray-700">Login</a> | |
| <a href="#" class="block w-full px-3 py-2 rounded-md text-center text-base font-medium text-white bg-primary hover:bg-indigo-700">Get Started</a> | |
| </div> | |
| </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-32"> | |
| <div class="md:flex md:items-center md:justify-between"> | |
| <div class="md:w-1/2 mb-10 md:mb-0"> | |
| <h1 class="text-4xl md:text-5xl font-bold leading-tight mb-6">Amplify Your Brand with <span class="underline decoration-secondary">Ayo Station</span></h1> | |
| <p class="text-xl mb-8 opacity-90">The most powerful advertising platform that connects brands with their ideal audiences across multiple channels.</p> | |
| <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4"> | |
| <a href="#" class="bg-white text-primary hover:bg-gray-100 px-6 py-3 rounded-md font-medium text-center">Start Advertising</a> | |
| <a href="#" class="border-2 border-white hover:bg-white hover:bg-opacity-10 px-6 py-3 rounded-md font-medium text-center">Learn More</a> | |
| </div> | |
| </div> | |
| <div class="md:w-1/2 relative"> | |
| <div class="bg-white bg-opacity-20 backdrop-filter backdrop-blur-lg rounded-xl p-6 shadow-xl"> | |
| <div class="flex items-center mb-4"> | |
| <div class="bg-white text-primary p-2 rounded-full mr-3"> | |
| <i class="fas fa-chart-line text-xl"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold">Real-time Analytics</h3> | |
| </div> | |
| <p class="mb-6 opacity-90">Track your campaign performance with our comprehensive dashboard that updates in real-time.</p> | |
| <div class="flex items-center mb-4"> | |
| <div class="bg-white text-primary p-2 rounded-full mr-3"> | |
| <i class="fas fa-bullseye text-xl"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold">Precision Targeting</h3> | |
| </div> | |
| <p class="mb-6 opacity-90">Reach your exact audience with our advanced demographic and behavioral targeting options.</p> | |
| <div class="flex items-center"> | |
| <div class="bg-white text-primary p-2 rounded-full mr-3"> | |
| <i class="fas fa-robot text-xl"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold">AI Optimization</h3> | |
| </div> | |
| <p class="opacity-90">Our algorithms automatically optimize your campaigns for maximum performance.</p> | |
| </div> | |
| </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="text-center mb-16"> | |
| <h2 class="text-3xl font-bold text-dark mb-4">Trusted by Leading Brands</h2> | |
| <p class="text-gray-500 max-w-2xl mx-auto">We've helped thousands of businesses increase their reach and grow their revenue through targeted advertising.</p> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-4 gap-8"> | |
| <div class="stat-card bg-light rounded-xl p-6 text-center shadow-sm hover:shadow-md"> | |
| <div class="text-primary text-4xl font-bold mb-2">10K+</div> | |
| <div class="text-gray-600">Active Advertisers</div> | |
| </div> | |
| <div class="stat-card bg-light rounded-xl p-6 text-center shadow-sm hover:shadow-md"> | |
| <div class="text-primary text-4xl font-bold mb-2">500M+</div> | |
| <div class="text-gray-600">Daily Impressions</div> | |
| </div> | |
| <div class="stat-card bg-light rounded-xl p-6 text-center shadow-sm hover:shadow-md"> | |
| <div class="text-primary text-4xl font-bold mb-2">92%</div> | |
| <div class="text-gray-600">Customer Satisfaction</div> | |
| </div> | |
| <div class="stat-card bg-light rounded-xl p-6 text-center shadow-sm hover:shadow-md"> | |
| <div class="text-primary text-4xl font-bold mb-2">5X</div> | |
| <div class="text-gray-600">Average ROI</div> | |
| </div> | |
| </div> | |
| <div class="mt-16 grid grid-cols-2 md:grid-cols-5 gap-8 items-center"> | |
| <img src="https://via.placeholder.com/150x60?text=Brand+1" alt="Brand Logo" class="opacity-60 hover:opacity-100 transition-opacity"> | |
| <img src="https://via.placeholder.com/150x60?text=Brand+2" alt="Brand Logo" class="opacity-60 hover:opacity-100 transition-opacity"> | |
| <img src="https://via.placeholder.com/150x60?text=Brand+3" alt="Brand Logo" class="opacity-60 hover:opacity-100 transition-opacity"> | |
| <img src="https://via.placeholder.com/150x60?text=Brand+4" alt="Brand Logo" class="opacity-60 hover:opacity-100 transition-opacity"> | |
| <img src="https://via.placeholder.com/150x60?text=Brand+5" alt="Brand Logo" class="opacity-60 hover:opacity-100 transition-opacity"> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Features Section --> | |
| <section class="bg-gray-50 py-16"> | |
| <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 font-bold text-dark mb-4">Powerful Advertising Features</h2> | |
| <p class="text-gray-500 max-w-2xl mx-auto">Everything you need to create, manage, and optimize high-performing ad campaigns.</p> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8"> | |
| <div class="card-hover bg-white rounded-xl p-8 shadow-sm transition-all duration-300"> | |
| <div class="bg-primary bg-opacity-10 text-primary p-3 rounded-full w-12 h-12 flex items-center justify-center mb-4"> | |
| <i class="fas fa-crosshairs text-xl"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-3">Advanced Targeting</h3> | |
| <p class="text-gray-600 mb-4">Reach your ideal customers with precision targeting based on demographics, interests, behaviors, and more.</p> | |
| <a href="#" class="text-primary font-medium flex items-center"> | |
| Learn more <i class="fas fa-arrow-right ml-2"></i> | |
| </a> | |
| </div> | |
| <div class="card-hover bg-white rounded-xl p-8 shadow-sm transition-all duration-300"> | |
| <div class="bg-primary bg-opacity-10 text-primary p-3 rounded-full w-12 h-12 flex items-center justify-center mb-4"> | |
| <i class="fas fa-chart-pie text-xl"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-3">Real-time Analytics</h3> | |
| <p class="text-gray-600 mb-4">Get instant insights into your campaign performance with our comprehensive dashboard and reporting tools.</p> | |
| <a href="#" class="text-primary font-medium flex items-center"> | |
| Learn more <i class="fas fa-arrow-right ml-2"></i> | |
| </a> | |
| </div> | |
| <div class="card-hover bg-white rounded-xl p-8 shadow-sm transition-all duration-300"> | |
| <div class="bg-primary bg-opacity-10 text-primary p-3 rounded-full w-12 h-12 flex items-center justify-center mb-4"> | |
| <i class="fas fa-adjust text-xl"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-3">Multi-Channel Ads</h3> | |
| <p class="text-gray-600 mb-4">Run campaigns across display, video, social, native, and search from a single platform.</p> | |
| <a href="#" class="text-primary font-medium flex items-center"> | |
| Learn more <i class="fas fa-arrow-right ml-2"></i> | |
| </a> | |
| </div> | |
| <div class="card-hover bg-white rounded-xl p-8 shadow-sm transition-all duration-300"> | |
| <div class="bg-primary bg-opacity-10 text-primary p-3 rounded-full w-12 h-12 flex items-center justify-center mb-4"> | |
| <i class="fas fa-robot text-xl"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-3">AI Optimization</h3> | |
| <p class="text-gray-600 mb-4">Our machine learning algorithms automatically optimize your bids and placements for maximum ROI.</p> | |
| <a href="#" class="text-primary font-medium flex items-center"> | |
| Learn more <i class="fas fa-arrow-right ml-2"></i> | |
| </a> | |
| </div> | |
| <div class="card-hover bg-white rounded-xl p-8 shadow-sm transition-all duration-300"> | |
| <div class="bg-primary bg-opacity-10 text-primary p-3 rounded-full w-12 h-12 flex items-center justify-center mb-4"> | |
| <i class="fas fa-shield-alt text-xl"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-3">Fraud Protection</h3> | |
| <p class="text-gray-600 mb-4">Advanced fraud detection ensures your budget is spent on real human traffic, not bots.</p> | |
| <a href="#" class="text-primary font-medium flex items-center"> | |
| Learn more <i class="fas fa-arrow-right ml-2"></i> | |
| </a> | |
| </div> | |
| <div class="card-hover bg-white rounded-xl p-8 shadow-sm transition-all duration-300"> | |
| <div class="bg-primary bg-opacity-10 text-primary p-3 rounded-full w-12 h-12 flex items-center justify-center mb-4"> | |
| <i class="fas fa-paint-brush text-xl"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-3">Creative Tools</h3> | |
| <p class="text-gray-600 mb-4">Easily create stunning ads with our built-in design tools and templates.</p> | |
| <a href="#" class="text-primary font-medium flex items-center"> | |
| Learn more <i class="fas fa-arrow-right ml-2"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- How It Works Section --> | |
| <section class="bg-white py-16"> | |
| <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 font-bold text-dark mb-4">How Ayo Station Works</h2> | |
| <p class="text-gray-500 max-w-2xl mx-auto">Get your ads running in minutes with our simple 4-step process.</p> | |
| </div> | |
| <div class="relative"> | |
| <div class="hidden md:block absolute top-0 left-1/2 transform -translate-x-1/2 h-full w-1 bg-gradient-to-b from-primary to-secondary"></div> | |
| <div class="space-y-12 md:space-y-0"> | |
| <!-- Step 1 --> | |
| <div class="md:flex md:items-center md:justify-between"> | |
| <div class="md:w-5/12 mb-8 md:mb-0"> | |
| <div class="bg-primary text-white rounded-full w-16 h-16 flex items-center justify-center text-2xl font-bold mb-4 mx-auto md:mx-0">1</div> | |
| <h3 class="text-xl font-semibold mb-3 text-center md:text-left">Create Your Campaign</h3> | |
| <p class="text-gray-600 text-center md:text-left">Set your budget, targeting, and goals. Our intuitive interface makes campaign setup a breeze.</p> | |
| </div> | |
| <div class="md:w-6/12"> | |
| <img src="https://via.placeholder.com/600x400?text=Create+Campaign" alt="Create Campaign" class="rounded-xl shadow-md w-full"> | |
| </div> | |
| </div> | |
| <!-- Step 2 --> | |
| <div class="md:flex md:items-center md:justify-between md:flex-row-reverse"> | |
| <div class="md:w-5/12 mb-8 md:mb-0"> | |
| <div class="bg-primary text-white rounded-full w-16 h-16 flex items-center justify-center text-2xl font-bold mb-4 mx-auto md:mx-0">2</div> | |
| <h3 class="text-xl font-semibold mb-3 text-center md:text-left">Design Your Ads</h3> | |
| <p class="text-gray-600 text-center md:text-left">Use our templates or upload your own creatives. We support all ad formats and sizes.</p> | |
| </div> | |
| <div class="md:w-6/12"> | |
| <img src="https://via.placeholder.com/600x400?text=Design+Ads" alt="Design Ads" class="rounded-xl shadow-md w-full"> | |
| </div> | |
| </div> | |
| <!-- Step 3 --> | |
| <div class="md:flex md:items-center md:justify-between"> | |
| <div class="md:w-5/12 mb-8 md:mb-0"> | |
| <div class="bg-primary text-white rounded-full w-16 h-16 flex items-center justify-center text-2xl font-bold mb-4 mx-auto md:mx-0">3</div> | |
| <h3 class="text-xl font-semibold mb-3 text-center md:text-left">Launch & Optimize</h3> | |
| <p class="text-gray-600 text-center md:text-left">Go live instantly. Our AI continuously optimizes your campaign for the best results.</p> | |
| </div> | |
| <div class="md:w-6/12"> | |
| <img src="https://via.placeholder.com/600x400?text=Launch+Campaign" alt="Launch Campaign" class="rounded-xl shadow-md w-full"> | |
| </div> | |
| </div> | |
| <!-- Step 4 --> | |
| <div class="md:flex md:items-center md:justify-between md:flex-row-reverse"> | |
| <div class="md:w-5/12 mb-8 md:mb-0"> | |
| <div class="bg-primary text-white rounded-full w-16 h-16 flex items-center justify-center text-2xl font-bold mb-4 mx-auto md:mx-0">4</div> | |
| <h3 class="text-xl font-semibold mb-3 text-center md:text-left">Track & Scale</h3> | |
| <p class="text-gray-600 text-center md:text-left">Monitor performance in real-time and scale what's working to maximize your ROI.</p> | |
| </div> | |
| <div class="md:w-6/12"> | |
| <img src="https://via.placeholder.com/600x400?text=Track+Results" alt="Track Results" class="rounded-xl shadow-md w-full"> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Testimonials Section --> | |
| <section class="bg-gray-50 py-16"> | |
| <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 font-bold text-dark mb-4">What Our Clients Say</h2> | |
| <p class="text-gray-500 max-w-2xl mx-auto">Don't just take our word for it. Here's what advertisers and publishers say about Ayo Station.</p> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8"> | |
| <div class="testimonial-card bg-white rounded-xl p-8 shadow-sm transition-all duration-300"> | |
| <div class="flex items-center mb-4"> | |
| <img src="https://via.placeholder.com/60x60?text=User+1" alt="User" class="rounded-full w-12 h-12 mr-4"> | |
| <div> | |
| <h4 class="font-semibold">Sarah Johnson</h4> | |
| <p class="text-gray-500 text-sm">Marketing Director, TechCorp</p> | |
| </div> | |
| </div> | |
| <p class="text-gray-600 mb-4">"Ayo Station has transformed our digital advertising strategy. We've seen a 300% increase in conversions while reducing our CPA by 40%."</p> | |
| <div class="flex 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> | |
| <div class="testimonial-card bg-white rounded-xl p-8 shadow-sm transition-all duration-300"> | |
| <div class="flex items-center mb-4"> | |
| <img src="https://via.placeholder.com/60x60?text=User+2" alt="User" class="rounded-full w-12 h-12 mr-4"> | |
| <div> | |
| <h4 class="font-semibold">Michael Chen</h4> | |
| <p class="text-gray-500 text-sm">CEO, EcomStore</p> | |
| </div> | |
| </div> | |
| <p class="text-gray-600 mb-4">"The targeting capabilities are unmatched. We're reaching exactly the right customers at the perfect moment in their buyer journey."</p> | |
| <div class="flex 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> | |
| <div class="testimonial-card bg-white rounded-xl p-8 shadow-sm transition-all duration-300"> | |
| <div class="flex items-center mb-4"> | |
| <img src="https://via.placeholder.com/60x60?text=User+3" alt="User" class="rounded-full w-12 h-12 mr-4"> | |
| <div> | |
| <h4 class="font-semibold">David Rodriguez</h4> | |
| <p class="text-gray-500 text-sm">Publisher, NewsHub</p> | |
| </div> | |
| </div> | |
| <p class="text-gray-600 mb-4">"As a publisher, Ayo Station has helped me maximize my ad revenue while maintaining a great user experience for my audience."</p> | |
| <div class="flex 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 class="mt-12 text-center"> | |
| <a href="#" class="inline-flex items-center text-primary font-medium"> | |
| See more success stories <i class="fas fa-arrow-right ml-2"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Pricing Section --> | |
| <section class="bg-white py-16"> | |
| <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 font-bold text-dark mb-4">Simple, Transparent Pricing</h2> | |
| <p class="text-gray-500 max-w-2xl mx-auto">Choose the plan that fits your advertising needs. No hidden fees, no surprises.</p> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-5xl mx-auto"> | |
| <div class="pricing-card bg-white border border-gray-200 rounded-xl p-8 shadow-sm transition-all duration-300"> | |
| <h3 class="text-xl font-semibold mb-4">Starter</h3> | |
| <div class="text-4xl font-bold mb-4">$99<span class="text-lg text-gray-500">/month</span></div> | |
| <p class="text-gray-600 mb-6">Perfect for small businesses and first-time advertisers.</p> | |
| <ul class="space-y-3 mb-8"> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check text-green-500 mr-2"></i> | |
| <span>Up to 10,000 impressions</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check text-green-500 mr-2"></i> | |
| <span>Basic targeting options</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check text-green-500 mr-2"></i> | |
| <span>Email support</span> | |
| </li> | |
| <li class="flex items-center text-gray-400"> | |
| <i class="fas fa-times mr-2"></i> | |
| <span>No AI optimization</span> | |
| </li> | |
| <li class="flex items-center text-gray-400"> | |
| <i class="fas fa-times mr-2"></i> | |
| <span>No premium placements</span> | |
| </li> | |
| </ul> | |
| <a href="#" class="block w-full bg-gray-100 hover:bg-gray-200 text-dark text-center py-3 rounded-md font-medium">Get Started</a> | |
| </div> | |
| <div class="pricing-card bg-white border-2 border-primary rounded-xl p-8 shadow-lg transition-all duration-300 relative"> | |
| <div class="absolute top-0 right-0 bg-primary text-white text-xs font-bold px-3 py-1 rounded-bl-lg rounded-tr-lg">MOST POPULAR</div> | |
| <h3 class="text-xl font-semibold mb-4">Professional</h3> | |
| <div class="text-4xl font-bold mb-4">$499<span class="text-lg text-gray-500">/month</span></div> | |
| <p class="text-gray-600 mb-6">Ideal for growing businesses with consistent ad spend.</p> | |
| <ul class="space-y-3 mb-8"> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check text-green-500 mr-2"></i> | |
| <span>Up to 100,000 impressions</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check text-green-500 mr-2"></i> | |
| <span>Advanced targeting options</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check text-green-500 mr-2"></i> | |
| <span>Priority email & chat support</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check text-green-500 mr-2"></i> | |
| <span>AI optimization</span> | |
| </li> | |
| <li class="flex items-center text-gray-400"> | |
| <i class="fas fa-times mr-2"></i> | |
| <span>Limited premium placements</span> | |
| </li> | |
| </ul> | |
| <a href="#" class="block w-full bg-primary hover:bg-indigo-700 text-white text-center py-3 rounded-md font-medium">Get Started</a> | |
| </div> | |
| <div class="pricing-card bg-white border border-gray-200 rounded-xl p-8 shadow-sm transition-all duration-300"> | |
| <h3 class="text-xl font-semibold mb-4">Enterprise</h3> | |
| <div class="text-4xl font-bold mb-4">Custom</div> | |
| <p class="text-gray-600 mb-6">For large businesses with high-volume advertising needs.</p> | |
| <ul class="space-y-3 mb-8"> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check text-green-500 mr-2"></i> | |
| <span>Unlimited impressions</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check text-green-500 mr-2"></i> | |
| <span>Premium targeting options</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check text-green-500 mr-2"></i> | |
| <span>24/7 dedicated support</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check text-green-500 mr-2"></i> | |
| <span>Advanced AI optimization</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check text-green-500 mr-2"></i> | |
| <span>Premium placements</span> | |
| </li> | |
| </ul> | |
| <a href="#" class="block w-full bg-gray-100 hover:bg-gray-200 text-dark text-center py-3 rounded-md font-medium">Contact Sales</a> | |
| </div> | |
| </div> | |
| <div class="mt-12 bg-gray-50 rounded-xl p-8 max-w-4xl mx-auto"> | |
| <h3 class="text-xl font-semibold mb-4 text-center">Need help choosing the right plan?</h3> | |
| <p class="text-gray-600 text-center mb-6">Our advertising experts can help you select the perfect solution for your business.</p> | |
| <div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4"> | |
| <a href="#" class="bg-primary hover:bg-indigo-700 text-white px-6 py-3 rounded-md font-medium text-center"> | |
| <i class="fas fa-phone-alt mr-2"></i> Schedule a Call | |
| </a> | |
| <a href="#" class="border border-primary text-primary hover:bg-primary hover:text-white px-6 py-3 rounded-md font-medium text-center"> | |
| <i class="fas fa-envelope mr-2"></i> Email Us | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- CTA Section --> | |
| <section class="bg-primary text-white py-16"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="md:flex md:items-center md:justify-between"> | |
| <div class="md:w-2/3 mb-8 md:mb-0"> | |
| <h2 class="text-3xl font-bold mb-4">Ready to Boost Your Advertising?</h2> | |
| <p class="text-lg opacity-90">Join thousands of businesses growing with Ayo Station. Get started in minutes.</p> | |
| </div> | |
| <div class="md:w-1/3"> | |
| <a href="#" class="block bg-white text-primary hover:bg-gray-100 px-6 py-4 rounded-md font-bold text-center text-lg"> | |
| Start Your Free Trial <i class="fas fa-arrow-right ml-2"></i> | |
| </a> | |
| </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-5 gap-12 mb-12"> | |
| <div class="md:col-span-2"> | |
| <div class="flex items-center mb-4"> | |
| <i class="fas fa-bullhorn text-primary text-2xl mr-2"></i> | |
| <span class="text-xl font-bold">Ayo Station</span> | |
| </div> | |
| <p class="text-gray-400 mb-6">The most powerful advertising platform that connects brands with their ideal audiences across multiple channels.</p> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="text-gray-400 hover:text-white"> | |
| <i class="fab fa-facebook-f"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white"> | |
| <i class="fab fa-twitter"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white"> | |
| <i class="fab fa-linkedin-in"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white"> | |
| <i class="fab fa-instagram"></i> | |
| </a> | |
| </div> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-semibold mb-4">Company</h4> | |
| <ul class="space-y-3"> | |
| <li><a href="#" class="text-gray-400 hover:text-white">About Us</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Careers</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Press</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Blog</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Contact</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-semibold mb-4">Products</h4> | |
| <ul class="space-y-3"> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Display Ads</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Video Ads</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Native Ads</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Social Ads</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Programmatic</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-semibold mb-4">Resources</h4> | |
| <ul class="space-y-3"> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Help Center</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Community</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Webinars</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Case Studies</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">API Docs</a></li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="border-t border-gray-800 pt-8"> | |
| <div class="md:flex md:items-center md:justify-between"> | |
| <div class="text-gray-400 text-sm mb-4 md:mb-0"> | |
| © 2023 Ayo Station. All rights reserved. | |
| </div> | |
| <div class="flex space-x-6"> | |
| <a href="#" class="text-gray-400 hover:text-white text-sm">Privacy Policy</a> | |
| <a href="#" class="text-gray-400 hover:text-white text-sm">Terms of Service</a> | |
| <a href="#" class="text-gray-400 hover:text-white text-sm">Cookie Policy</a> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| // Mobile menu toggle | |
| document.getElementById('mobile-menu-button').addEventListener('click', function() { | |
| const menu = document.getElementById('mobile-menu'); | |
| if (menu.classList.contains('hidden')) { | |
| menu.classList.remove('hidden'); | |
| } else { | |
| menu.classList.add('hidden'); | |
| } | |
| }); | |
| // Smooth scrolling for anchor links | |
| document.querySelectorAll('a[href^="#"]').forEach(anchor => { | |
| anchor.addEventListener('click', function (e) { | |
| e.preventDefault(); | |
| const targetId = this.getAttribute('href'); | |
| if (targetId === '#') return; | |
| const targetElement = document.querySelector(targetId); | |
| if (targetElement) { | |
| targetElement.scrollIntoView({ | |
| behavior: 'smooth' | |
| }); | |
| } | |
| }); | |
| }); | |
| // Animation on scroll | |
| const observerOptions = { | |
| threshold: 0.1 | |
| }; | |
| const observer = new IntersectionObserver((entries) => { | |
| entries.forEach(entry => { | |
| if (entry.isIntersecting) { | |
| entry.target.classList.add('animate-fadeIn'); | |
| observer.unobserve(entry.target); | |
| } | |
| }); | |
| }, observerOptions); | |
| document.querySelectorAll('.stat-card, .card-hover, .testimonial-card, .pricing-card').forEach(card => { | |
| card.classList.add('opacity-0', 'transition-opacity', 'duration-500'); | |
| observer.observe(card); | |
| }); | |
| </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=Joel-08/ayo-s-progress" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |