forked from sadanandpai/frontend-mini-challenges
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (33 loc) · 1.05 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/native/logo.svg" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="title" content="Frontend Mini Challenges" />
<meta
name="description"
content="Frontend Mini Challenges is a collection of frontend interview coding challenges"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Frontend mini Challenges</title>
<meta name="title" content="Frontend Mini Challenges" />
<meta
name="description"
content="Frontend Mini Challenges is a collection of frontend interview coding challenges"
/>
</head>
<body>
<script>
if (
window.location.hostname === "localhost" ||
window.location.hostname === "127.0.0.1"
) {
window.location = "native/";
} else {
window.location =
"https://sadanandpai.github.io/frontend-mini-challenges/react/dist/";
}
</script>
</body>
</html>