-
Notifications
You must be signed in to change notification settings - Fork 0
/
sites.html
57 lines (52 loc) · 2.23 KB
/
sites.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Admin Page</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
margin: 0;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
.button-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 15px;
max-width: 400px;
}
.button {
padding: 15px;
text-align: center;
background-color: #3498db;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
transition: background-color 0.3s;
}
.button:hover {
background-color: #2980b9;
}
</style>
</head>
<body>
<div class="button-grid">
<button class="button" onclick="window.location.href='https://map.cosmossmp.xyz/'">Cosmos Map</button>
<button class="button" onclick="window.location.href='https://github.com/NextGen-Code-Innovations'">Git Hub</button>
<button class="button" onclick="window.location.href='https://us-east-2.console.aws.amazon.com/console/home?region=us-east-2'">AWS Console</button>
<button class="button" onclick="window.location.href='https://www.kayleejohnston.net'">Main Site</button>
<button class="button" onclick="window.location.href='https://www.sillylittlegoose.org'">The Silly Little Goose</button>
<button class="button" onclick="window.location.href='https://www.wildcatmakerspace.com'">Wildcat Makerspace</button>
<button class="button" onclick="window.location.href='https://miniature-spoon-x5455xvv7vf9pg.github.dev/'">Kaylee Johnston Codespace</button>
<button class="button" onclick="window.location.href='https://github.com/codespaces/reimagined-yodel-v44w5rj5jgwhw4wx'">The Silly Little Goose Codespace</button>
<button class="button" onclick="window.location.href='https://github.com/codespaces/laughing-pancake-g4xr9497wvw2pj7'">Wildcat Makerspace Codespace</button>
</div>
</body>
</html>