This repository was archived by the owner on Feb 1, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (34 loc) · 1.57 KB
/
index.html
File metadata and controls
36 lines (34 loc) · 1.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Redirect</title>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap" rel="stylesheet">
<script src="https://cdn.tailwindcss.com"></script>
<meta name="description" content="RedFox Studios is a leading provider of cutting-edge programming and game development services, helping businesses and individuals alike to thrive in the digital landscape.">
<meta name="keywords" content="Web Development, Game Development, Portfolio, HTML, CSS, JavaScript, PHP, Unity, Unreal Engine">
<meta name="author" content="Michal Flaška">
<style>
body {
font-family: 'Open Sans', sans-serif;
}
</style>
<script>
// Redirect function
function redirectToWelcome() {
window.location.href = "/home/";
}
// Automatically redirect after the page loads
window.onload = function () {
setTimeout(redirectToWelcome, 10);
};
</script>
</head>
<body class="bg-neutral-800 h-screen flex justify-center items-center">
<div class="text-center">
<h1 class="text-2xl font-bold mb-2 text-neutral-300">Redirecting you to the home page...</h1>
<h2 class="text-lg text-neutral-400">If you are not redirected, please <a class="text-blue-300 underline hover:text-blue-400" href="https://www.redfox-studios.org/home/">click here</a>.</h2>
</div>
</body>
</html>