-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
27 lines (27 loc) · 772 Bytes
/
404.html
File metadata and controls
27 lines (27 loc) · 772 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Official website of FSUMinho, the team representing the University of Minho in Formula Student competitions." />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<title>FSUMinho Formula Student Team</title>
<script>
// Simple redirect to home page with hash routing
window.location.replace('/#/');
</script>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
padding: 50px;
background: #f8f8f8;
}
h1 { color: #e52526; }
</style>
</head>
<body>
<h1>FSUMinho</h1>
<p>Redirecionando...</p>
</body>
</html>