-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinks.php
More file actions
46 lines (41 loc) · 1.31 KB
/
Copy pathlinks.php
File metadata and controls
46 lines (41 loc) · 1.31 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
<?php
require_once './includes/navbar.php';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GitHub Repositories</title>
<link rel="stylesheet" href="./assets/css/styles.css">
</head>
<body>
<header>
<div class="navbar">
<div class="logo">My Music</div>
<div class="burger-menu">
<div></div>
<div></div>
<div></div>
</div>
<div class="nav-links">
<?php renderNavbar("github.php"); ?>
</div>
</div>
</header>
<div class="main-content">
<h1>GitHub Repositories</h1>
<p>Click the buttons below to visit the backend and frontend repositories on GitHub:</p>
<!-- GitHub Links Section -->
<section>
<h2>Backend Repository</h2>
<button type="button" onclick="window.location.href='https://github.com/ReactiveSlime/spotify-scrobble-backend';" class="btn-reset">Visit Backend Repo</button>
</section>
<section>
<h2>Frontend Repository</h2>
<button type="button" onclick="window.location.href='https://github.com/ReactiveSlime/spotify-scrobble-frontend';" class="btn-reset">Visit Frontend Repo</button>
</section>
</div>
<script src="./assets/js/script.js"></script>
</body>
</html>