Spaces:
Running
Running
https://mohantylabpsu.org/ recreate navbar and footer
Browse files- README.md +9 -5
- index.html +101 -19
README.md
CHANGED
|
@@ -1,10 +1,14 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
-
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
title: QuantumCircuitLab ⚡
|
| 3 |
+
colorFrom: green
|
| 4 |
+
colorTo: yellow
|
| 5 |
+
emoji: 🐳
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
| 8 |
+
tags:
|
| 9 |
+
- deepsite-v3
|
| 10 |
---
|
| 11 |
|
| 12 |
+
# Welcome to your new DeepSite project!
|
| 13 |
+
This project was created with [DeepSite](https://deepsite.hf.co).
|
| 14 |
+
|
index.html
CHANGED
|
@@ -1,19 +1,101 @@
|
|
| 1 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>MohantyLab | PSU</title>
|
| 7 |
+
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
|
| 8 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 9 |
+
<script src="https://unpkg.com/feather-icons"></script>
|
| 10 |
+
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
|
| 11 |
+
<style>
|
| 12 |
+
.nav-link::after {
|
| 13 |
+
content: '';
|
| 14 |
+
display: block;
|
| 15 |
+
width: 0;
|
| 16 |
+
height: 2px;
|
| 17 |
+
background: #3b82f6;
|
| 18 |
+
transition: width 0.3s;
|
| 19 |
+
}
|
| 20 |
+
.nav-link:hover::after {
|
| 21 |
+
width: 100%;
|
| 22 |
+
}
|
| 23 |
+
.footer-link:hover {
|
| 24 |
+
color: #93c5fd;
|
| 25 |
+
transform: translateX(5px);
|
| 26 |
+
transition: all 0.3s ease;
|
| 27 |
+
}
|
| 28 |
+
</style>
|
| 29 |
+
</head>
|
| 30 |
+
<body class="bg-gray-50 font-sans">
|
| 31 |
+
<!-- Modern Navbar -->
|
| 32 |
+
<nav class="bg-white shadow-lg sticky top-0 z-50">
|
| 33 |
+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
| 34 |
+
<div class="flex justify-between h-20 items-center">
|
| 35 |
+
<!-- Logo -->
|
| 36 |
+
<div class="flex-shrink-0 flex items-center">
|
| 37 |
+
<div class="flex items-center space-x-2">
|
| 38 |
+
<i data-feather="zap" class="text-blue-600 w-8 h-8"></i>
|
| 39 |
+
<span class="text-xl font-bold text-gray-800">Mohanty<span class="text-blue-600">Lab</span> @ PSU</span>
|
| 40 |
+
</div>
|
| 41 |
+
</div>
|
| 42 |
+
|
| 43 |
+
<!-- Desktop Menu -->
|
| 44 |
+
<div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
|
| 45 |
+
<a href="index.html" class="nav-link text-gray-800 hover:text-blue-600 px-3 py-2 font-medium">Home</a>
|
| 46 |
+
<a href="research.html" class="nav-link text-gray-800 hover:text-blue-600 px-3 py-2 font-medium">Research</a>
|
| 47 |
+
<a href="publications.html" class="nav-link text-gray-800 hover:text-blue-600 px-3 py-2 font-medium">Publications</a>
|
| 48 |
+
<a href="team.html" class="nav-link text-gray-800 hover:text-blue-600 px-3 py-2 font-medium">Team</a>
|
| 49 |
+
<a href="resources.html" class="nav-link text-gray-800 hover:text-blue-600 px-3 py-2 font-medium">Resources</a>
|
| 50 |
+
<a href="contact.html" class="nav-link text-gray-800 hover:text-blue-600 px-3 py-2 font-medium">Contact</a>
|
| 51 |
+
<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>
|
| 52 |
+
</div>
|
| 53 |
+
|
| 54 |
+
<!-- Mobile menu button -->
|
| 55 |
+
<div class="md:hidden flex items-center">
|
| 56 |
+
<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">
|
| 57 |
+
<i data-feather="menu"></i>
|
| 58 |
+
</button>
|
| 59 |
+
</div>
|
| 60 |
+
</div>
|
| 61 |
+
</div>
|
| 62 |
+
</nav>
|
| 63 |
+
<!-- Footer -->
|
| 64 |
+
<footer class="bg-gray-800 text-white py-12">
|
| 65 |
+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
| 66 |
+
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
|
| 67 |
+
<div>
|
| 68 |
+
<h3 class="text-lg font-bold mb-4">MohantyLab</h3>
|
| 69 |
+
<p class="text-gray-400">Pushing the boundaries of quantum computing and nanotechnology at Portland State University.</p>
|
| 70 |
+
</div>
|
| 71 |
+
<div>
|
| 72 |
+
<h3 class="text-lg font-bold mb-4">Quick Links</h3>
|
| 73 |
+
<ul class="space-y-2">
|
| 74 |
+
<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>
|
| 75 |
+
<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>
|
| 76 |
+
<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>
|
| 77 |
+
</ul>
|
| 78 |
+
</div>
|
| 79 |
+
<div>
|
| 80 |
+
<h3 class="text-lg font-bold mb-4">Connect</h3>
|
| 81 |
+
<ul class="space-y-2">
|
| 82 |
+
<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>
|
| 83 |
+
<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>
|
| 84 |
+
<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>
|
| 85 |
+
</ul>
|
| 86 |
+
</div>
|
| 87 |
+
<div>
|
| 88 |
+
<h3 class="text-lg font-bold mb-4">Address</h3>
|
| 89 |
+
<p class="text-gray-400 flex items-start">
|
| 90 |
+
<i data-feather="map-pin" class="w-4 h-4 mr-2 mt-1 flex-shrink-0"></i>
|
| 91 |
+
<span>1900 SW 4th Ave, Portland, OR 97201</span>
|
| 92 |
+
</p>
|
| 93 |
+
</div>
|
| 94 |
+
</div>
|
| 95 |
+
<div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400">
|
| 96 |
+
<p>© 2023 MohantyLab @ PSU. All rights reserved.</p>
|
| 97 |
+
</div>
|
| 98 |
+
</div>
|
| 99 |
+
</footer>
|
| 100 |
+
</body>
|
| 101 |
+
</html>
|