-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (72 loc) · 3.46 KB
/
index.html
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Thelogicmatrix</title>
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="../assets/sitefav32.png" type="image/png" sizes="32x32">
<link rel="icon" href="../assets/sitefav16.png" type="image/png" sizes="16x16">
</head>
<body>
<nav class="navigation">
<div class="nav-left">
<a href="../index.html" class="nav-link">
<img src="../assets/sitelogo.png" alt="Site Logo" class="site-logo">
</a>
<a href="../index.html" class="nav-link">
<span class="site-name">Thelogicmatrix</span>
</a>
</div>
<div class="nav-right">
<ul class="desktop-nav">
<li><a href="../index.html" class="active">Home</a></li>
<li><a href="../layering-realities.html">Layering Realities</a></li>
<li><a href="../about.html">About</a></li>
<li><a href="../contact.html">Contact</a></li>
</ul>
<!-- Mobile Menu Icon (Hamburger) - Now included directly as SVG -->
<div class="mobile-menu-icon" onclick="toggleMobileMenu()">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" class="h-6 w-6">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path>
</svg>
</div>
</div>
</nav>
<!-- Mobile Menu Dropdown -->
<div class="mobile-dropdown" id="mobileMenu">
<ul>
<li><a href="../index.html" class="active">Home</a></li>
<li><a href="../layering-realities.html">Layering Realities</a></li>
<li><a href="../about.html">About</a></li>
<li><a href="../contact.html">Contact</a></li>
</ul>
</div>
<header class="hero text-center" style="background-image: url('assets/heroback.jpg'); background-size: cover; background-position: center; position: relative;">
<!-- Overlay for dimming effect -->
<div style="position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.4); z-index: 0;"></div>
<h1 style="position: relative; z-index: 2;">Welcome.</h1>
<!-- Scalable site logo -->
<img src="assets/sitelogo.png" alt="Site Logo" class="mx-auto" style="position: relative; z-index: 2; width: 30vw; max-width: 320px;">
<h1 style="position: relative; z-index: 2;">Thelogicmatrix</h1>
<p style="position: relative; z-index: 2;">Turning vertices into reality</p>
</header>
<main>
<section id="about">
<h2>About</h2>
<p>I'm planning on using this site as a general portfolio in the future, if you're here to check out my work for layering realities, just navigate using the tabs up top.</p>
</section>
</main>
<footer>
<p>© 2025 Nathan Wong. All rights reserved.</p>
</footer>
<script>
// Function to toggle the mobile menu
function toggleMobileMenu() {
const mobileMenu = document.getElementById("mobileMenu");
mobileMenu.classList.toggle("show");
}
</script>
</body>
</html>