Amplify.com / events.html
Fazbeeer's picture
Promote version 3fd58c8 to main
2b838b9 verified
Raw
History Blame Contribute Delete
16.6 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Events Calendar - Amplify</title>
<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 src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;600;700&display=swap');
.hero-gradient {
background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #3a0000 100%);
}
.glow-text {
text-shadow: 0 0 10px rgba(212, 175, 55, 0.7);
}
.event-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}
</style>
</head>
<body class="bg-black text-white font-['Montserrat']">
<!-- Vanta.js Background -->
<div id="vanta-bg" class="fixed top-0 left-0 w-full h-full z-0"></div>
<!-- Navigation -->
<nav class="relative z-10 bg-black bg-opacity-80 border-b border-gold-500">
<div class="container mx-auto px-6 py-4">
<div class="flex justify-between items-center">
<div class="flex items-center space-x-2">
<i data-feather="zap" class="text-yellow-500"></i>
<span class="text-2xl font-bold font-['Bebas+Neue'] tracking-wider text-yellow-500">AMPLIFY</span>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="index.html" class="text-white hover:text-yellow-500 transition">Home</a>
<a href="index.html#features" class="text-white hover:text-yellow-500 transition">Features</a>
<a href="index.html#pricing" class="text-white hover:text-yellow-500 transition">Pricing</a>
<a href="about.html" class="text-white hover:text-yellow-500 transition">About</a>
<a href="currency.html" class="text-white hover:text-yellow-500 transition">Currency</a>
<a href="events.html" class="text-yellow-500 hover:text-yellow-400 transition">Events</a>
<a href="results.html" class="text-white hover:text-yellow-500 transition">Results</a>
</div>
<div class="flex items-center space-x-4">
<a href="login.html" class="bg-yellow-500 hover:bg-yellow-600 text-black font-bold px-4 py-2 rounded-lg transition flex items-center">
<i data-feather="user" class="mr-2"></i> Login
</a>
</div>
</div>
</div>
</nav>
<!-- Events Hero Section -->
<section class="relative z-10 hero-gradient py-32">
<div class="container mx-auto px-6 text-center">
<h1 class="text-5xl md:text-7xl font-bold font-['Bebas+Neue'] mb-8 tracking-wider">
<span class="text-yellow-500 glow-text">UPCOMING</span> <span class="text-white">EVENTS</span>
</h1>
<p class="text-xl md:text-2xl max-w-4xl mx-auto text-gray-300">
Join our workshops, webinars and training sessions to amplify your performance
</p>
</div>
</section>
<!-- Events Calendar Section -->
<section class="relative z-10 py-20 bg-black bg-opacity-90">
<div class="container mx-auto px-6">
<!-- Calendar Navigation -->
<div class="flex justify-between items-center mb-12">
<h2 class="text-3xl font-bold font-['Bebas+Neue'] tracking-wider">
<span class="text-yellow-500">MARCH</span> <span class="text-white">2025</span>
</h2>
<div class="flex space-x-4">
<button class="bg-gray-900 hover:bg-gray-800 text-white px-4 py-2 rounded-lg border border-gray-700">
<i data-feather="chevron-left"></i>
</button>
<button class="bg-gray-900 hover:bg-gray-800 text-white px-4 py-2 rounded-lg border border-gray-700">
Today
</button>
<button class="bg-gray-900 hover:bg-gray-800 text-white px-4 py-2 rounded-lg border border-gray-700">
<i data-feather="chevron-right"></i>
</button>
</div>
</div>
<!-- Calendar Grid -->
<div class="grid grid-cols-7 gap-2 mb-8">
<div class="text-center text-gray-500 font-bold py-2">SUN</div>
<div class="text-center text-gray-500 font-bold py-2">MON</div>
<div class="text-center text-gray-500 font-bold py-2">TUE</div>
<div class="text-center text-gray-500 font-bold py-2">WED</div>
<div class="text-center text-gray-500 font-bold py-2">THU</div>
<div class="text-center text-gray-500 font-bold py-2">FRI</div>
<div class="text-center text-gray-500 font-bold py-2">SAT</div>
<!-- Calendar Days -->
<template id="calendar-day-template">
<div class="h-24 border border-gray-800 p-1 overflow-hidden relative">
<div class="day-number absolute top-1 right-1 text-sm"></div>
<div class="events-container mt-6 space-y-1"></div>
</div>
</template>
</div>
<!-- Events List -->
<div class="space-y-8">
<h3 class="text-2xl font-bold font-['Bebas+Neue'] tracking-wider mb-6">
<span class="text-yellow-500">FEATURED</span> <span class="text-white">EVENTS</span>
</h3>
<!-- Event Cards -->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Event 1 -->
<div class="bg-gradient-to-br from-black to-gray-900 rounded-xl border border-yellow-500 p-6 transition duration-300 event-card">
<div class="flex justify-between items-start mb-4">
<span class="bg-yellow-500 text-black px-3 py-1 rounded-full text-sm font-bold">WORKSHOP</span>
<span class="text-yellow-500">MAR 15</span>
</div>
<h4 class="text-xl font-bold mb-2">Mental Toughness for Athletes</h4>
<p class="text-gray-400 mb-4">Learn techniques to improve focus and performance under pressure.</p>
<div class="flex items-center text-gray-300 text-sm mb-4">
<i data-feather="clock" class="mr-2 w-4 h-4"></i> 10:00 AM - 12:00 PM
</div>
<button class="w-full bg-amber-500 hover:bg-amber-600 text-black font-bold py-2 rounded-lg transition">
Register Now
</button>
</div>
<!-- Event 2 -->
<div class="bg-gradient-to-br from-black to-gray-900 rounded-xl border border-red-500 p-6 transition duration-300 event-card">
<div class="flex justify-between items-start mb-4">
<span class="bg-red-500 text-black px-3 py-1 rounded-full text-sm font-bold">WEBINAR</span>
<span class="text-red-500">MAR 20</span>
</div>
<h4 class="text-xl font-bold mb-2">VR Performance Training</h4>
<p class="text-gray-400 mb-4">Discover how VR can enhance your mental preparation and performance.</p>
<div class="flex items-center text-gray-300 text-sm mb-4">
<i data-feather="clock" class="mr-2 w-4 h-4"></i> 2:00 PM - 3:30 PM
</div>
<button class="w-full bg-[#9b0000] hover:bg-[#7a0000] text-white font-bold py-2 rounded-lg transition">
Register Now
</button>
</div>
<!-- Event 3 -->
<div class="bg-gradient-to-br from-black to-gray-900 rounded-xl border border-yellow-500 p-6 transition duration-300 event-card">
<div class="flex justify-between items-start mb-4">
<span class="bg-yellow-500 text-black px-3 py-1 rounded-full text-sm font-bold">TRAINING</span>
<span class="text-yellow-500">MAR 25</span>
</div>
<h4 class="text-xl font-bold mb-2">Biofeedback Masterclass</h4>
<p class="text-gray-400 mb-4">Learn to interpret and use biometric data to optimize performance.</p>
<div class="flex items-center text-gray-300 text-sm mb-4">
<i data-feather="clock" class="mr-2 w-4 h-4"></i> 9:00 AM - 4:00 PM
</div>
<button class="w-full bg-yellow-500 hover:bg-yellow-600 text-black font-bold py-2 rounded-lg transition">
Register Now
</button>
</div>
</div>
</div>
</div>
</section>
<!-- Newsletter CTA -->
<section class="relative z-10 py-16 bg-gradient-to-r from-black via-gray-900 to-black">
<div class="container mx-auto px-6 text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-6 font-['Bebas+Neue'] tracking-wider">
<span class="text-yellow-500">STAY</span> <span class="text-white">UPDATED</span>
</h2>
<p class="text-xl mb-8 max-w-2xl mx-auto text-gray-300">
Get notified about upcoming events and exclusive training opportunities
</p>
<div class="max-w-md mx-auto flex">
<input type="email" placeholder="Your email address" class="flex-grow bg-gray-900 text-white border border-yellow-500 rounded-l-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-yellow-500">
<button class="bg-yellow-500 hover:bg-yellow-600 text-black font-bold px-6 py-3 rounded-r-lg transition">
Subscribe
</button>
</div>
</div>
</section>
<!-- Footer -->
<footer class="relative z-10 bg-black bg-opacity-90 border-t border-gray-800 py-12">
<div class="container mx-auto px-6">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<div class="flex items-center space-x-2 mb-4">
<i data-feather="zap" class="text-yellow-500"></i>
<span class="text-2xl font-bold font-['Bebas+Neue'] tracking-wider text-yellow-500">AMPLIFY</span>
</div>
<p class="text-gray-400 mb-4">
Mental performance technology for champions in sports, business, and life.
</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-yellow-500 transition">
<i data-feather="facebook"></i>
</a>
<a href="#" class="text-gray-400 hover:text-yellow-500 transition">
<i data-feather="twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-yellow-500 transition">
<i data-feather="instagram"></i>
</a>
<a href="#" class="text-gray-400 hover:text-yellow-500 transition">
<i data-feather="linkedin"></i>
</a>
</div>
</div>
<div>
<h3 class="text-lg font-bold text-white mb-4">Events</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-yellow-500 transition">Workshops</a></li>
<li><a href="#" class="text-gray-400 hover:text-yellow-500 transition">Webinars</a></li>
<li><a href="#" class="text-gray-400 hover:text-yellow-500 transition">Training Sessions</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold text-white mb-4">Company</h3>
<ul class="space-y-2">
<li><a href="about.html" class="text-gray-400 hover:text-yellow-500 transition">About Us</a></li>
<li><a href="currency.html" class="text-gray-400 hover:text-yellow-500 transition">Currency</a></li>
<li><a href="events.html" class="text-yellow-500 hover:text-yellow-400 transition">Events</a></li>
<li><a href="#" class="text-gray-400 hover:text-yellow-500 transition">Contact</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold text-white mb-4">Resources</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-yellow-500 transition">Blog</a></li>
<li><a href="#" class="text-gray-400 hover:text-yellow-500 transition">Research</a></li>
<li><a href="#" class="text-gray-400 hover:text-yellow-500 transition">Help Center</a></li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-500 mb-4 md:mb-0">
© 2025 Amplify Technologies. All rights reserved.
</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-500 hover:text-yellow-500 transition">Privacy Policy</a>
<a href="#" class="text-gray-500 hover:text-yellow-500 transition">Terms of Service</a>
</div>
</div>
</div>
</footer>
<script>
// Initialize Vanta.js background
VANTA.GLOBE({
el: "#vanta-bg",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
color: 0xb8860b,
backgroundColor: 0x0,
size: 0.8
});
// Initialize calendar
document.addEventListener('DOMContentLoaded', function() {
feather.replace();
// Simple calendar generation for demo
const calendarGrid = document.querySelector('.grid.grid-cols-7.gap-2.mb-8');
const dayTemplate = document.getElementById('calendar-day-template');
// Clear placeholder template
calendarGrid.innerHTML = calendarGrid.innerHTML.replace(dayTemplate.outerHTML, '');
// Add days
for (let i = 0; i < 35; i++) { // 5 weeks
const dayDiv = document.createElement('div');
dayDiv.className = 'h-24 border border-gray-800 p-1 overflow-hidden relative';
const dayNumber = i - 5 + 1; // Adjust for March 2025 starting on Saturday
const dayNumberDiv = document.createElement('div');
dayNumberDiv.className = 'day-number absolute top-1 right-1 text-sm';
dayNumberDiv.textContent = dayNumber > 0 && dayNumber <= 31 ? dayNumber : '';
dayDiv.appendChild(dayNumberDiv);
// Add event indicators for demo
if (dayNumber === 15 || dayNumber === 20 || dayNumber === 25) {
const eventDot = document.createElement('div');
eventDot.className = 'w-2 h-2 rounded-full bg-yellow-500 absolute top-6 right-1';
dayDiv.appendChild(eventDot);
}
calendarGrid.appendChild(dayDiv);
}
});
</script>
</body>
</html>