|
|
<!DOCTYPE html> |
|
|
<html lang="en" class="scroll-smooth"> |
|
|
<head> |
|
|
<meta charset="UTF-8"> |
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
|
<title>Contact - Mayar Science Lab</title> |
|
|
<link rel="icon" type="image/x-icon" href="/static/favicon.ico"> |
|
|
<script src="https://cdn.tailwindcss.com"></script> |
|
|
<script> |
|
|
tailwind.config = { |
|
|
theme: { |
|
|
extend: { |
|
|
colors: { |
|
|
primary: '#3B82F6', |
|
|
secondary: '#10B981', |
|
|
dark: '#1E293B', |
|
|
light: '#F8FAFC', |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
</script> |
|
|
<script src="https://unpkg.com/feather-icons"></script> |
|
|
<style> |
|
|
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap'); |
|
|
body { |
|
|
font-family: 'Space Grotesk', sans-serif; |
|
|
} |
|
|
.contact-card { |
|
|
transition: all 0.3s ease; |
|
|
} |
|
|
.contact-card:hover { |
|
|
transform: translateY(-5px); |
|
|
} |
|
|
</style> |
|
|
</head> |
|
|
<body class="bg-light text-dark"> |
|
|
|
|
|
<div class="fixed w-full z-60 bg-dark text-white text-sm py-1 px-4 sm:px-6 lg:px-8"> |
|
|
<div class="max-w-7xl mx-auto flex justify-between items-center"> |
|
|
<div class="flex items-center space-x-4"> |
|
|
<a href="#" class="hover:text-primary transition"><i data-feather="phone" class="w-4 h-4 mr-1"></i> +1 (234) 567-890</a> |
|
|
<a href="mailto:[email protected]" class="hover:text-primary transition"><i data-feather="mail" class="w-4 h-4 mr-1"></i> [email protected]</a> |
|
|
</div> |
|
|
<div class="flex items-center space-x-4"> |
|
|
<a href="#" class="hover:text-primary transition"><i data-feather="twitter" class="w-4 h-4"></i></a> |
|
|
<a href="#" class="hover:text-primary transition"><i data-feather="linkedin" class="w-4 h-4"></i></a> |
|
|
<a href="#" class="hover:text-primary transition"><i data-feather="facebook" class="w-4 h-4"></i></a> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<nav class="fixed w-full z-50 bg-white/80 backdrop-blur-md shadow-sm mt-6"> |
|
|
<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"> |
|
|
<div class="h-8 w-8 rounded-full bg-primary flex items-center justify-center"> |
|
|
<i data-feather="flask" class="text-white"></i> |
|
|
</div> |
|
|
<span class="ml-2 text-xl font-bold bg-gradient-to-r from-primary to-secondary bg-clip-text text-transparent">Mayar Science Lab</span> |
|
|
</div> |
|
|
</div> |
|
|
<div class="hidden md:flex items-center space-x-8"> |
|
|
<a href="index.html" class="text-dark hover:text-primary font-medium transition">Home</a> |
|
|
<a href="index.html#research-areas" class="text-dark hover:text-primary font-medium transition">Data Science</a> |
|
|
<a href="index.html#featured-research" class="text-dark hover:text-primary font-medium transition">Research</a> |
|
|
<a href="https://www.surveymonkey.com/" target="_blank" class="text-dark hover:text-primary font-medium transition">Surveys</a> |
|
|
<a href="about.html" class="text-dark hover:text-primary font-medium transition">About</a> |
|
|
<a href="team.html" class="text-dark hover:text-primary font-medium transition">Team</a> |
|
|
<a href="careers.html" class="text-dark hover:text-primary font-medium transition">Careers</a> |
|
|
<a href="contact.html" class="text-primary font-medium">Contact</a> |
|
|
</div> |
|
|
<div class="md:hidden flex items-center"> |
|
|
<button id="mobile-menu-button" class="text-dark"> |
|
|
<i data-feather="menu"></i> |
|
|
</button> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</nav> |
|
|
|
|
|
|
|
|
<div class="pt-32 pb-20"> |
|
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
|
<div class="text-center"> |
|
|
<h1 class="text-4xl font-extrabold tracking-tight sm:text-5xl">Contact Us</h1> |
|
|
<p class="mt-4 max-w-2xl text-xl text-gray-500 mx-auto"> |
|
|
We'd love to hear from you about potential collaborations, questions, or feedback |
|
|
</p> |
|
|
</div> |
|
|
|
|
|
<div class="mt-16 grid gap-8 md:grid-cols-3"> |
|
|
|
|
|
<div class="contact-card bg-white p-6 rounded-lg shadow-md text-center"> |
|
|
<div class="h-16 w-16 rounded-full bg-primary/10 flex items-center justify-center mx-auto"> |
|
|
<i data-feather="mail" class="text-primary"></i> |
|
|
</div> |
|
|
<h3 class="mt-4 text-xl font-bold">Email</h3> |
|
|
<p class="mt-2 text-gray-500">General inquiries</p> |
|
|
<a href="mailto:[email protected]" class="mt-4 inline-block text-primary hover:text-primary/80 transition">[email protected]</a> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="contact-card bg-white p-6 rounded-lg shadow-md text-center"> |
|
|
<div class="h-16 w-16 rounded-full bg-secondary/10 flex items-center justify-center mx-auto"> |
|
|
<i data-feather="phone" class="text-secondary"></i> |
|
|
</div> |
|
|
<h3 class="mt-4 text-xl font-bold">Phone</h3> |
|
|
<p class="mt-2 text-gray-500">Monday to Friday, 9am-5pm</p> |
|
|
<a href="tel:+1234567890" class="mt-4 inline-block text-primary hover:text-primary/80 transition">+1 (234) 567-890</a> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="contact-card bg-white p-6 rounded-lg shadow-md text-center"> |
|
|
<div class="h-16 w-16 rounded-full bg-primary/10 flex items-center justify-center mx-auto"> |
|
|
<i data-feather="map-pin" class="text-primary"></i> |
|
|
</div> |
|
|
<h3 class="mt-4 text-xl font-bold">Visit Us</h3> |
|
|
<p class="mt-2 text-gray-500">Our research facility</p> |
|
|
<p class="mt-4 text-gray-600"> |
|
|
123 Science Park Drive<br> |
|
|
Research City, Lecce-Italy |
|
|
</p> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<div class="mt-20 bg-white p-8 rounded-lg shadow-md"> |
|
|
<div class="max-w-2xl mx-auto"> |
|
|
<h2 class="text-3xl font-bold text-center">Send Us a Message</h2> |
|
|
<form class="mt-8 space-y-6"> |
|
|
<div class="grid grid-cols-1 gap-6 sm:grid-cols-2"> |
|
|
<div> |
|
|
<label for="first-name" class="block text-sm font-medium text-gray-700">First Name</label> |
|
|
<input type="text" id="first-name" class="mt-1 block w-full border border-gray-300 rounded-lg shadow-sm py-2 px-3 focus:outline-none focus:ring-primary focus:border-primary"> |
|
|
</div> |
|
|
<div> |
|
|
<label for="last-name" class="block text-sm font-medium text-gray-700">Last Name</label> |
|
|
<input type="text" id="last-name" class="mt-1 block w-full border border-gray-300 rounded-lg shadow-sm py-2 px-3 focus:outline-none focus:ring-primary focus:border-primary"> |
|
|
</div> |
|
|
</div> |
|
|
<div> |
|
|
<label for="email" class="block text-sm font-medium text-gray-700">Email</label> |
|
|
<input type="email" id="email" class="mt-1 block w-full border border-gray-300 rounded-lg shadow-sm py-2 px-3 focus:outline-none focus:ring-primary focus:border-primary"> |
|
|
</div> |
|
|
<div> |
|
|
<label for="subject" class="block text-sm font-medium text-gray-700">Subject</label> |
|
|
<select id="subject" class="mt-1 block w-full border border-gray-300 rounded-lg shadow-sm py-2 px-3 focus:outline-none focus:ring-primary focus:border-primary"> |
|
|
<option>General Inquiry</option> |
|
|
<option>Research Collaboration</option> |
|
|
<option>Media Request</option> |
|
|
<option>Career Opportunity</option> |
|
|
<option>Other</option> |
|
|
</select> |
|
|
</div> |
|
|
<div> |
|
|
<label for="message" class="block text-sm font-medium text-gray-700">Message</label> |
|
|
<textarea id="message" rows="4" class="mt-1 block w-full border border-gray-300 rounded-lg shadow-sm py-2 px-3 focus:outline-none focus:ring-primary focus:border-primary"></textarea> |
|
|
</div> |
|
|
<div> |
|
|
<button type="submit" class="w-full flex justify-center py-3 px-4 border border-transparent rounded-lg shadow-sm text-sm font-medium text-white bg-primary hover:bg-primary/90 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-primary transition"> |
|
|
Send Message |
|
|
</button> |
|
|
</div> |
|
|
</form> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<div class="mt-20"> |
|
|
<div class="aspect-w-16 aspect-h-9 rounded-lg overflow-hidden"> |
|
|
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3022.215221967587!2d-73.98784412444169!3d40.74844047138895!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89c259a9b3117469%3A0xd134e199a405a163!2sEmpire%20State%20Building!5e0!3m2!1sen!2sus!4v1689776817588!5m2!1sen!2sus" width="100%" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<footer class="bg-dark text-white"> |
|
|
<div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8"> |
|
|
<div class="grid grid-cols-2 md:grid-cols-4 gap-8"> |
|
|
<div class="col-span-2"> |
|
|
<div class="flex items-center"> |
|
|
<div class="h-8 w-8 rounded-full bg-primary flex items-center justify-center"> |
|
|
<i data-feather="flask" class="text-white"></i> |
|
|
</div> |
|
|
<span class="ml-2 text-xl font-bold">Mayar Data Science Lab</span> |
|
|
</div> |
|
|
<p class="mt-4 text-gray-300"> |
|
|
Advancing data science through innovative research, analytics, and collaboration. |
|
|
</p> |
|
|
</div> |
|
|
<div> |
|
|
<h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase">Explore</h3> |
|
|
<ul class="mt-4 space-y-2"> |
|
|
<li><a href="about.html" class="text-gray-400 hover:text-white transition">About</a></li> |
|
|
<li><a href="team.html" class="text-gray-400 hover:text-white transition">Team</a></li> |
|
|
<li><a href="careers.html" class="text-gray-400 hover:text-white transition">Careers</a></li> |
|
|
<li><a href="contact.html" class="text-gray-400 hover:text-white transition">Contact</a></li> |
|
|
</ul> |
|
|
</div> |
|
|
<div> |
|
|
<h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase">Connect</h3> |
|
|
<ul class="mt-4 space-y-2"> |
|
|
<li><a href="#" class="text-gray-400 hover:text-white transition">Twitter</a></li> |
|
|
<li><a href="#" class="text-gray-400 hover:text-white transition">LinkedIn</a></li> |
|
|
<li><a href="#" class="text-gray-400 hover:text-white transition">GitHub</a></li> |
|
|
<li><a href="#" class="text-gray-400 hover:text-white transition">Publications</a></li> |
|
|
</ul> |
|
|
</div> |
|
|
</div> |
|
|
<div class="mt-12 border-t border-gray-700 pt-8 flex flex-col md:flex-row justify-between"> |
|
|
<p class="text-gray-400 text-sm"> |
|
|
© 2025 Mayar Science Lab. All rights reserved. |
|
|
</p> |
|
|
</div> |
|
|
</div> |
|
|
</footer> |
|
|
|
|
|
<script> |
|
|
feather.replace(); |
|
|
</script> |
|
|
</body> |
|
|
</html> |