Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Contact Us - Econovation</title> | |
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"> | |
<link rel="preconnect" href="https://fonts.googleapis.com"> | |
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | |
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet"> | |
<link rel="stylesheet" href="main.css"> | |
<link rel="stylesheet" href="contact-us.css"> | |
<link rel="stylesheet" href="creative.css"> | |
<style> | |
:root { | |
--primary-bg: #f8fafc; | |
--primary-text: #1e293b; | |
} | |
body { | |
font-family: 'Poppins', sans-serif; | |
background-color: var(--primary-bg); | |
color: var(--primary-text); | |
} | |
</style> | |
</head> | |
<body class="min-h-screen flex flex-col animated-gradient-bg"> | |
<!-- Navigation bar removed --> | |
<!-- Main content starts here --> | |
<main class="flex-grow container mx-auto px-6 py-12 md:px-12 lg:px-16"> | |
<!-- Hero Section --> | |
<section class="mb-16 text-center"> | |
<h1 class="text-4xl md:text-5xl font-bold mb-6">Get in Touch</h1> | |
<p class="text-lg text-gray-600 max-w-3xl mx-auto">Have questions or want to learn more about Econovation? We're here to help. Reach out to our team using the contact information below or fill out the form.</p> | |
</section> | |
<!-- Contact Information and Form --> | |
<section class="grid md:grid-cols-2 gap-12 mb-16"> | |
<!-- Contact Information --> | |
<div class="bg-white rounded-lg shadow-lg p-8"> | |
<h2 class="text-2xl font-semibold mb-6">Contact Information</h2> | |
<div class="space-y-6"> | |
<div class="flex items-start"> | |
<div class="bg-blue-100 p-3 rounded-full mr-4"> | |
<i class="fas fa-map-marker-alt text-blue-600"></i> | |
</div> | |
<div> | |
<h3 class="font-medium">Address</h3> | |
<p class="text-gray-600">123 Innovation Street, Tech City, CA 94043</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="bg-blue-100 p-3 rounded-full mr-4"> | |
<i class="fas fa-envelope text-blue-600"></i> | |
</div> | |
<div> | |
<h3 class="font-medium">Email</h3> | |
<p class="text-gray-600">info@econovation.org</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="bg-blue-100 p-3 rounded-full mr-4"> | |
<i class="fas fa-phone text-blue-600"></i> | |
</div> | |
<div> | |
<h3 class="font-medium">Phone</h3> | |
<p class="text-gray-600">+1 (555) 123-4567</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="bg-blue-100 p-3 rounded-full mr-4"> | |
<i class="fas fa-clock text-blue-600"></i> | |
</div> | |
<div> | |
<h3 class="font-medium">Office Hours</h3> | |
<p class="text-gray-600">Monday - Friday: 9:00 AM - 5:00 PM</p> | |
</div> | |
</div> | |
</div> | |
<div class="mt-8"> | |
<h3 class="font-medium mb-4">Connect With Us</h3> | |
<div class="flex space-x-4"> | |
<a href="#" class="bg-blue-600 text-white p-3 rounded-full hover:bg-blue-700 transition-colors duration-300"> | |
<i class="fab fa-facebook-f"></i> | |
</a> | |
<a href="#" class="bg-blue-400 text-white p-3 rounded-full hover:bg-blue-500 transition-colors duration-300"> | |
<i class="fab fa-twitter"></i> | |
</a> | |
<a href="#" class="bg-pink-600 text-white p-3 rounded-full hover:bg-pink-700 transition-colors duration-300"> | |
<i class="fab fa-instagram"></i> | |
</a> | |
<a href="#" class="bg-blue-800 text-white p-3 rounded-full hover:bg-blue-900 transition-colors duration-300"> | |
<i class="fab fa-linkedin-in"></i> | |
</a> | |
</div> | |
</div> | |
</div> | |
<!-- Contact Form --> | |
<div class="glass-card bg-white rounded-lg shadow-lg p-8"> | |
<h2 class="text-2xl font-semibold mb-6">Send Us a Message</h2> | |
<form> | |
<div class="grid md:grid-cols-2 gap-6 mb-6"> | |
<div> | |
<label for="first-name" class="block text-sm font-medium text-gray-700 mb-2">First Name</label> | |
<input type="text" id="first-name" name="first-name" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent"> | |
</div> | |
<div> | |
<label for="last-name" class="block text-sm font-medium text-gray-700 mb-2">Last Name</label> | |
<input type="text" id="last-name" name="last-name" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent"> | |
</div> | |
</div> | |
<div class="mb-6"> | |
<label for="email" class="block text-sm font-medium text-gray-700 mb-2">Email Address</label> | |
<input type="email" id="email" name="email" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent"> | |
</div> | |
<div class="mb-6"> | |
<label for="subject" class="block text-sm font-medium text-gray-700 mb-2">Subject</label> | |
<input type="text" id="subject" name="subject" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent"> | |
</div> | |
<div class="mb-6"> | |
<label for="message" class="block text-sm font-medium text-gray-700 mb-2">Message</label> | |
<textarea id="message" name="message" rows="5" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent"></textarea> | |
</div> | |
<button type="submit" class="w-full bg-blue-600 text-white py-3 px-6 rounded-md hover:bg-blue-700 transition-colors duration-300 font-medium">Send Message</button> | |
</form> | |
</div> | |
</section> | |
<!-- Map Section --> | |
<section class="mb-16"> | |
<h2 class="text-2xl font-semibold mb-6 text-center">Find Us</h2> | |
<div class="bg-gray-200 rounded-lg h-96 flex items-center justify-center"> | |
<!-- Placeholder for map --> | |
<p class="text-gray-600">Map will be embedded here</p> | |
</div> | |
</section> | |
<!-- FAQ Section --> | |
<section> | |
<h2 class="text-2xl font-semibold mb-6 text-center">Frequently Asked Questions</h2> | |
<div class="grid md:grid-cols-2 gap-6"> | |
<div class="bg-white rounded-lg shadow-md p-6"> | |
<h3 class="font-medium text-lg mb-2">How can I join Econovation?</h3> | |
<p class="text-gray-600">You can join Econovation by filling out the membership form on our website or by contacting us directly via email or phone.</p> | |
</div> | |
<div class="bg-white rounded-lg shadow-md p-6"> | |
<h3 class="font-medium text-lg mb-2">What types of programs do you offer?</h3> | |
<p class="text-gray-600">We offer a variety of programs including workshops, seminars, mentorship opportunities, and collaborative projects focused on economic innovation.</p> | |
</div> | |
<div class="bg-white rounded-lg shadow-md p-6"> | |
<h3 class="font-medium text-lg mb-2">How can my organization partner with Econovation?</h3> | |
<p class="text-gray-600">Please visit our Partnerships page or contact our partnerships team directly at partnerships@econovation.org to discuss collaboration opportunities.</p> | |
</div> | |
<div class="bg-white rounded-lg shadow-md p-6"> | |
<h3 class="font-medium text-lg mb-2">Are there volunteer opportunities available?</h3> | |
<p class="text-gray-600">Yes, we welcome volunteers! Please reach out to our team with your interests and availability, and we'll connect you with suitable opportunities.</p> | |
</div> | |
</div> | |
</section> | |
</main> | |
<!-- Footer --> | |
<footer class="bg-gray-900 text-white py-12"> | |
<div class="container mx-auto px-6 md:px-12 lg:px-16"> | |
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8"> | |
<!-- Organization Info --> | |
<div> | |
<h3 class="text-xl font-semibold mb-4">Econovation</h3> | |
<p class="text-gray-400 mb-4">Empowering economic innovation through education, collaboration, and community engagement.</p> | |
<div class="flex space-x-4"> | |
<a href="#" class="text-gray-400 hover:text-white transition-colors duration-300"> | |
<i class="fab fa-facebook-f"></i> | |
</a> | |
<a href="#" class="text-gray-400 hover:text-white transition-colors duration-300"> | |
<i class="fab fa-twitter"></i> | |
</a> | |
<a href="#" class="text-gray-400 hover:text-white transition-colors duration-300"> | |
<i class="fab fa-instagram"></i> | |
</a> | |
<a href="#" class="text-gray-400 hover:text-white transition-colors duration-300"> | |
<i class="fab fa-linkedin-in"></i> | |
</a> | |
</div> | |
</div> | |
<!-- Quick Links --> | |
<div> | |
<h3 class="text-xl font-semibold mb-4">Quick Links</h3> | |
<ul class="space-y-2"> | |
<li><a href="about-us.html" class="text-gray-400 hover:text-white transition-colors duration-300">About Us</a></li> | |
<li><a href="events.html" class="text-gray-400 hover:text-white transition-colors duration-300">Events</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition-colors duration-300">Programs</a></li> | |
<li><a href="partnerships.html" class="text-gray-400 hover:text-white transition-colors duration-300">Partnerships</a></li> | |
<li><a href="contact-us.html" class="text-gray-400 hover:text-white transition-colors duration-300">Contact</a></li> | |
</ul> | |
</div> | |
<!-- Contact Info --> | |
<div> | |
<h3 class="text-xl font-semibold mb-4">Contact Us</h3> | |
<ul class="space-y-2"> | |
<li class="flex items-start"> | |
<i class="fas fa-map-marker-alt mt-1 mr-2 text-gray-400"></i> | |
<span class="text-gray-400">123 Innovation Street, Tech City, CA 94043</span> | |
</li> | |
<li class="flex items-start"> | |
<i class="fas fa-envelope mt-1 mr-2 text-gray-400"></i> | |
<span class="text-gray-400">info@econovation.org</span> | |
</li> | |
<li class="flex items-start"> | |
<i class="fas fa-phone mt-1 mr-2 text-gray-400"></i> | |
<span class="text-gray-400">+1 (555) 123-4567</span> | |
</li> | |
</ul> | |
</div> | |
<!-- Newsletter --> | |
<div> | |
<h3 class="text-xl font-semibold mb-4">Newsletter</h3> | |
<p class="text-gray-400 mb-4">Subscribe to our newsletter for the latest updates and insights.</p> | |
<form class="flex"> | |
<input type="email" placeholder="Your email" class="px-4 py-2 w-full rounded-l-md focus:outline-none text-gray-900"> | |
<button type="submit" class="bg-blue-600 text-white px-4 py-2 rounded-r-md hover:bg-blue-700 transition-colors duration-300">Subscribe</button> | |
</form> | |
</div> | |
</div> | |
<div class="border-t border-gray-800 mt-10 pt-6 text-center"> | |
<p class="text-gray-400">© 2023 Econovation. All rights reserved.</p> | |
</div> | |
</div> | |
</footer> | |
<script src="main.js"></script> | |
<script src="creative.js"></script> | |
<script> | |
// Mobile menu toggle | |
document.addEventListener('DOMContentLoaded', function() { | |
const mobileMenuButton = document.getElementById('mobileMenuButton'); | |
const closeMenuButton = document.getElementById('closeMenuButton'); | |
const mobileMenu = document.getElementById('mobileMenu'); | |
mobileMenuButton.addEventListener('click', function() { | |
mobileMenu.classList.remove('translate-x-full'); | |
}); | |
closeMenuButton.addEventListener('click', function() { | |
mobileMenu.classList.add('translate-x-full'); | |
}); | |
}); | |
</script> | |
</body> | |
</html> |