-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcolleberators.html
More file actions
55 lines (53 loc) · 2.24 KB
/
colleberators.html
File metadata and controls
55 lines (53 loc) · 2.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Wei-Ping Chan</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="bg-gray-50 text-gray-800 font-sans">
<!-- Navbar -->
<header class="bg-white shadow">
<div class="max-w-6xl mx-auto px-4 py-4 flex justify-between items-center">
<h1 class="text-2xl font-bold">Wei-Ping Chan</h1>
<!-- Hamburger Menu for Mobile -->
<div class="md:hidden">
<button id="menu-toggle" class="text-gray-800 focus:outline-none">
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16m-7 6h7"></path>
</svg>
</button>
</div>
<!-- Navigation Links -->
<nav id="menu" class="hidden md:flex space-x-4">
<a href="home.html" class="hover:text-blue-500">Home</a>
<a href="projects.html" class="hover:text-blue-500">Projects</a>
<span class="text-gray-500">Collaborations</span>
<a href="home.html#about" class="hover:text-blue-500">About</a>
<a href="home.html#contact" class="hover:text-blue-500">Contact</a>
</nav>
</div>
</header>
<script>
// Toggle menu visibility on mobile
const menuToggle = document.getElementById('menu-toggle');
const menu = document.getElementById('menu');
menuToggle.addEventListener('click', () => {
menu.classList.toggle('hidden');
menuToggle.classList.toggle('absolute');
menuToggle.classList.toggle('top-4');
menuToggle.classList.toggle('right-4');
});
</script>
<section class="py-12 text-center">
<div class="max-w-6xl mx-auto px-4">
<h2 class="text-3xl font-bold mb-6">Collaborations</h2>
<div class="bg-yellow-100 p-6 rounded-xl shadow">
<h3 class="text-xl font-semibold text-yellow-800">🚧 Under Construction 🚧</h3>
<p class="text-gray-700 mt-4">This section is currently being built. Please check back later for updates!</p>
</div>
</div>
</section>
</body>
</html>