quantumcircuitlab / index.html
techiqbal's picture
https://mohantylabpsu.org/ recreate navbar and footer
ca0d160 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MohantyLab | PSU</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<style>
.nav-link::after {
content: '';
display: block;
width: 0;
height: 2px;
background: #3b82f6;
transition: width 0.3s;
}
.nav-link:hover::after {
width: 100%;
}
.footer-link:hover {
color: #93c5fd;
transform: translateX(5px);
transition: all 0.3s ease;
}
</style>
</head>
<body class="bg-gray-50 font-sans">
<!-- Modern Navbar -->
<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-20 items-center">
<!-- Logo -->
<div class="flex-shrink-0 flex items-center">
<div class="flex items-center space-x-2">
<i data-feather="zap" class="text-blue-600 w-8 h-8"></i>
<span class="text-xl font-bold text-gray-800">Mohanty<span class="text-blue-600">Lab</span> @ PSU</span>
</div>
</div>
<!-- Desktop Menu -->
<div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
<a href="index.html" class="nav-link text-gray-800 hover:text-blue-600 px-3 py-2 font-medium">Home</a>
<a href="research.html" class="nav-link text-gray-800 hover:text-blue-600 px-3 py-2 font-medium">Research</a>
<a href="publications.html" class="nav-link text-gray-800 hover:text-blue-600 px-3 py-2 font-medium">Publications</a>
<a href="team.html" class="nav-link text-gray-800 hover:text-blue-600 px-3 py-2 font-medium">Team</a>
<a href="resources.html" class="nav-link text-gray-800 hover:text-blue-600 px-3 py-2 font-medium">Resources</a>
<a href="contact.html" class="nav-link text-gray-800 hover:text-blue-600 px-3 py-2 font-medium">Contact</a>
<a href="join.html" class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-md font-medium transition duration-300 shadow-md hover:shadow-lg">Join Us</a>
</div>
<!-- Mobile menu button -->
<div class="md:hidden flex items-center">
<button type="button" class="mobile-menu-button 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-blue-500">
<i data-feather="menu"></i>
</button>
</div>
</div>
</div>
</nav>
<!-- Footer -->
<footer class="bg-gray-800 text-white py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<h3 class="text-lg font-bold mb-4">MohantyLab</h3>
<p class="text-gray-400">Pushing the boundaries of quantum computing and nanotechnology at Portland State University.</p>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Quick Links</h3>
<ul class="space-y-2">
<li><a href="index.html" class="footer-link text-gray-400 hover:text-blue-300 flex items-center"><i data-feather="chevron-right" class="w-4 h-4 mr-2"></i> Home</a></li>
<li><a href="research.html" class="footer-link text-gray-400 hover:text-blue-300 flex items-center"><i data-feather="chevron-right" class="w-4 h-4 mr-2"></i> Research</a></li>
<li><a href="publications.html" class="footer-link text-gray-400 hover:text-blue-300 flex items-center"><i data-feather="chevron-right" class="w-4 h-4 mr-2"></i> Publications</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Connect</h3>
<ul class="space-y-2">
<li><a href="mailto:contact@mohantylabpsu.org" class="footer-link text-gray-400 hover:text-blue-300 flex items-center"><i data-feather="mail" class="w-4 h-4 mr-2"></i> Email</a></li>
<li><a href="#" class="footer-link text-gray-400 hover:text-blue-300 flex items-center"><i data-feather="twitter" class="w-4 h-4 mr-2"></i> Twitter</a></li>
<li><a href="#" class="footer-link text-gray-400 hover:text-blue-300 flex items-center"><i data-feather="linkedin" class="w-4 h-4 mr-2"></i> LinkedIn</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Address</h3>
<p class="text-gray-400 flex items-start">
<i data-feather="map-pin" class="w-4 h-4 mr-2 mt-1 flex-shrink-0"></i>
<span>1900 SW 4th Ave, Portland, OR 97201</span>
</p>
</div>
</div>
<div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400">
<p>&copy; 2023 MohantyLab @ PSU. All rights reserved.</p>
</div>
</div>
</footer>
</body>
</html>