my-website / index.html
MrHarper's picture
Create me an affiliate marketing home page where customers can sign up to my email list for special deals and promotions my email of my domain where they can sign up is through systeme.io and email is mrharper@exsteme.com - Initial Deployment
9b4dcf8 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Exclusive Deals | Join Our Affiliate Community</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<style>
.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);
}
.transition-all {
transition: all 0.3s ease;
}
</style>
</head>
<body class="font-sans antialiased text-gray-800">
<!-- Navigation -->
<nav class="bg-white shadow-sm">
<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="dollar-sign" class="text-indigo-600 h-8 w-8"></i>
<span class="ml-2 text-xl font-bold text-indigo-600">MrHarper Deals</span>
</div>
</div>
<div class="hidden sm:ml-6 sm:flex sm:items-center space-x-8">
<a href="#" class="text-gray-700 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Home</a>
<a href="#" class="text-gray-700 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Deals</a>
<a href="#" class="text-gray-700 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Categories</a>
<a href="#" class="text-gray-700 hover:text-indigo-600 px-3 py-2 text-sm font-medium">About</a>
</div>
<div class="hidden sm:ml-6 sm:flex sm:items-center">
<button class="bg-indigo-600 hover:bg-indigo-700 text-white px-4 py-2 rounded-md text-sm font-medium transition-all">
Sign Up
</button>
</div>
<div class="-mr-2 flex items-center sm: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-indigo-500" aria-controls="mobile-menu" aria-expanded="false">
<i data-feather="menu"></i>
</button>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<div class="hero-gradient text-white">
<div class="max-w-7xl mx-auto py-16 px-4 sm:py-24 sm:px-6 lg:px-8">
<div class="text-center" data-aos="fade-up">
<h1 class="text-4xl font-extrabold tracking-tight sm:text-5xl lg:text-6xl">
Exclusive Deals Just For You
</h1>
<p class="mt-6 max-w-lg mx-auto text-xl">
Join our VIP email list and get access to special promotions, discounts, and affiliate offers before anyone else.
</p>
<div class="mt-10 max-w-md mx-auto sm:max-w-none sm:flex sm:justify-center">
<form action="https://systeme.io/funnel_campaign/forms/your-form-id" method="POST" class="w-full sm:max-w-md">
<div class="flex flex-col sm:flex-row gap-3">
<input type="email" name="email" required class="flex-grow px-5 py-3 rounded-md text-gray-900 placeholder-gray-500 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500" placeholder="Enter your email">
<button type="submit" class="px-8 py-3 border border-transparent text-base font-medium rounded-md text-indigo-700 bg-white hover:bg-gray-100 md:py-4 md:text-lg md:px-10 transition-all">
Get Access
</button>
</div>
<p class="mt-3 text-sm text-indigo-100">
We respect your privacy. Unsubscribe at any time.
</p>
</form>
</div>
</div>
</div>
</div>
<!-- Features Section -->
<div class="py-12 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:text-center" data-aos="fade-up">
<h2 class="text-base text-indigo-600 font-semibold tracking-wide uppercase">Benefits</h2>
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
Why Join Our Community?
</p>
</div>
<div class="mt-10">
<div class="grid grid-cols-1 gap-10 sm:grid-cols-2 lg:grid-cols-3">
<div class="bg-gray-50 p-6 rounded-lg card-hover transition-all" data-aos="fade-up" data-aos-delay="100">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-indigo-500 text-white">
<i data-feather="percent"></i>
</div>
<div class="mt-6">
<h3 class="text-lg font-medium text-gray-900">Exclusive Discounts</h3>
<p class="mt-2 text-base text-gray-500">
Get access to special promotions and discounts not available to the general public.
</p>
</div>
</div>
<div class="bg-gray-50 p-6 rounded-lg card-hover transition-all" data-aos="fade-up" data-aos-delay="200">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-indigo-500 text-white">
<i data-feather="clock"></i>
</div>
<div class="mt-6">
<h3 class="text-lg font-medium text-gray-900">Early Access</h3>
<p class="mt-2 text-base text-gray-500">
Be the first to know about new products and limited-time offers before they sell out.
</p>
</div>
</div>
<div class="bg-gray-50 p-6 rounded-lg card-hover transition-all" data-aos="fade-up" data-aos-delay="300">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-indigo-500 text-white">
<i data-feather="dollar-sign"></i>
</div>
<div class="mt-6">
<h3 class="text-lg font-medium text-gray-900">Affiliate Opportunities</h3>
<p class="mt-2 text-base text-gray-500">
Earn commissions by sharing our deals with your friends and followers.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Testimonials -->
<div class="bg-indigo-50 py-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:text-center mb-12" data-aos="fade-up">
<h2 class="text-base text-indigo-600 font-semibold tracking-wide uppercase">Testimonials</h2>
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
What Our Members Say
</p>
</div>
<div class="grid grid-cols-1 gap-8 md:grid-cols-2">
<div class="bg-white p-8 rounded-lg shadow-sm" data-aos="fade-up" data-aos-delay="100">
<div class="flex items-center">
<div class="flex-shrink-0">
<img class="h-12 w-12 rounded-full" src="http://static.photos/people/200x200/1" alt="">
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-900">Sarah Johnson</h4>
<p class="text-indigo-600">VIP Member</p>
</div>
</div>
<p class="mt-4 text-gray-600">
"I've saved over $500 in the last 3 months thanks to the exclusive deals from MrHarper. The affiliate program is also amazing - I've made extra income just by sharing!"
</p>
</div>
<div class="bg-white p-8 rounded-lg shadow-sm" data-aos="fade-up" data-aos-delay="200">
<div class="flex items-center">
<div class="flex-shrink-0">
<img class="h-12 w-12 rounded-full" src="http://static.photos/people/200x200/2" alt="">
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-900">Michael Chen</h4>
<p class="text-indigo-600">Affiliate Partner</p>
</div>
</div>
<p class="mt-4 text-gray-600">
"The quality of the offers is outstanding. My audience loves the products I promote from MrHarper Deals, and the conversion rates are much higher than other programs."
</p>
</div>
</div>
</div>
</div>
<!-- CTA Section -->
<div class="bg-indigo-700">
<div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:py-16 lg:px-8 lg:flex lg:items-center lg:justify-between">
<h2 class="text-3xl font-extrabold tracking-tight text-white sm:text-4xl" data-aos="fade-right">
<span class="block">Ready to start saving?</span>
<span class="block text-indigo-200">Join our community today.</span>
</h2>
<div class="mt-8 flex lg:mt-0 lg:flex-shrink-0" data-aos="fade-left">
<div class="inline-flex rounded-md shadow">
<form action="https://systeme.io/funnel_campaign/forms/your-form-id" method="POST" class="w-full">
<div class="flex flex-col sm:flex-row gap-3">
<input type="email" name="email" required class="flex-grow px-5 py-3 rounded-md text-gray-900 placeholder-gray-500 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500" placeholder="Enter your email">
<button type="submit" class="px-8 py-3 border border-transparent text-base font-medium rounded-md text-indigo-700 bg-white hover:bg-gray-100 md:py-4 md:text-lg md:px-10 transition-all">
Sign Up Free
</button>
</div>
</form>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="bg-gray-800">
<div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:py-16 lg:px-8">
<div class="grid grid-cols-2 gap-8 md:grid-cols-4">
<div>
<h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Company</h3>
<ul class="mt-4 space-y-4">
<li><a href="#" class="text-base text-gray-300 hover:text-white">About</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white">Blog</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white">Careers</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white">Press</a></li>
</ul>
</div>
<div>
<h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Resources</h3>
<ul class="mt-4 space-y-4">
<li><a href="#" class="text-base text-gray-300 hover:text-white">Help Center</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white">Guides</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white">Community</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white">Affiliates</a></li>
</ul>
</div>
<div>
<h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Legal</h3>
<ul class="mt-4 space-y-4">
<li><a href="#" class="text-base text-gray-300 hover:text-white">Privacy</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white">Terms</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white">Cookie Policy</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white">GDPR</a></li>
</ul>
</div>
<div>
<h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Connect</h3>
<div class="mt-4 flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="facebook"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="instagram"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="linkedin"></i>
</a>
</div>
<div class="mt-6">
<p class="text-gray-300">Email us at:</p>
<a href="mailto:mrharper@exsteme.com" class="text-white hover:text-indigo-300">mrharper@exsteme.com</a>
</div>
</div>
</div>
<div class="mt-12 border-t border-gray-700 pt-8">
<p class="text-base text-gray-400 text-center">
&copy; 2023 MrHarper Deals. All rights reserved.
</p>
</div>
</div>
</footer>
<script>
AOS.init({
duration: 800,
easing: 'ease-in-out',
once: true
});
feather.replace();
</script>
</body>
</html>