-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (49 loc) · 1.88 KB
/
index.html
File metadata and controls
52 lines (49 loc) · 1.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>REMIN, alone in silence</title>
<link rel="stylesheet" href="style.css">
</head>
<body class="home-page">
<header class="site-header">
<div class="container nav-wrap">
<a class="brand" href="index.html">REMIN <span>Alone In Silence</span></a>
<nav class="nav-links" aria-label="Primary navigation">
<a href="index.html">Home</a>
<a href="pages/screenshots.html">Screenshots</a>
<a href="pages/plans.html">Plans</a>
<a href="pages/contact.html">Contact</a>
</nav>
</div>
</header>
<main class="home-main">
<section class="hero section hero-home" id="top">
<div class="container hero-shell">
<p class="eyebrow">Narrative Horror Project</p>
<h1>REMIN, alone in silence</h1>
<p class="tagline">Memory fades. The silence does not.</p>
<p class="lead">
Follow development updates, story direction, and core gameplay plans from one focused hub.
</p>
<div class="actions">
<a class="btn btn-primary" href="pages/screenshots.html">See Screenshots</a>
<a class="btn btn-primary" href="pages/plans.html">See Plans</a>
</div>
</div>
</section>
</main>
<footer class="site-footer">
<div class="container">
<p>© <span id="year"></span> REMIN, alone in silence. All rights reserved.</p>
</div>
</footer>
<script>
const yearEl = document.getElementById('year');
if (yearEl) {
yearEl.textContent = new Date().getFullYear();
}
</script>
</body>
</html>