Skip to content

Commit e4d594d

Browse files
committed
chore: add 404 and construction pages
1 parent 23a82a3 commit e4d594d

File tree

2 files changed

+40
-0
lines changed

2 files changed

+40
-0
lines changed

public/404.html

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<title>Computing Science Student Society</title>
5+
<meta charset="utf-8" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1" />
7+
<link rel="icon" type="image/svg+xml" href="static/files/csss_colourful.svg" />
8+
<link
9+
href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap"
10+
rel="stylesheet"
11+
/>
12+
<link rel="stylesheet" href="styles.css" />
13+
</head>
14+
<body>
15+
<main>
16+
<h1>404 page not found :(</h1>
17+
<img src="static/images/404frog.webp" alt="404 Frog" />
18+
</main>
19+
</body>
20+
</html>

public/construction.html

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<title>Computing Science Student Society</title>
5+
<meta charset="utf-8" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1" />
7+
<link rel="icon" type="image/svg+xml" href="static/files/csss_colourful.svg" />
8+
<link
9+
href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap"
10+
rel="stylesheet"
11+
/>
12+
<link rel="stylesheet" href="styles.css" />
13+
</head>
14+
<body>
15+
<main>
16+
<h1>This site is under construction</h1>
17+
<img src="static/images/csss-construction-frog.png" alt="Construction Frog" />
18+
</main>
19+
</body>
20+
</html>

0 commit comments

Comments
 (0)