-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (39 loc) · 2.15 KB
/
index.html
File metadata and controls
40 lines (39 loc) · 2.15 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
37
38
39
40
<!DOCTYPE html>
<html class="h-full" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no" />
<meta http-equiv="Refresh" content="5; url='https://www.linkedin.com/in/josedulanto/'" />
<link rel="shortcut icon" href="/favicon.ico" />
<title>José Dulanto</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="h-full">
<noscript>You need to enable JavaScript to run this app.</noscript>
<main class="grid min-h-full place-items-center bg-white px-6 py-24 sm:py-32 lg:px-8">
<div class="text-center flex flex-col">
<div class="flex justify-center items-center mb-10">
<img src="/images/josedulanto.jpg" alt="" class="h-48 w-48 flex-none rounded-lg bg-gray-800 object-cover">
</div>
<p class="text-xl font-semibold text-indigo-600">Redirecting to José's LinkedIn profile in <span id="countdown" class="text-xl font-semibold text-indigo-600">5 sec.</span></p>
<h1 class="mt-4 text-3xl font-bold tracking-tight text-gray-900 sm:text-5xl">There's a major renovation on the way!</h1>
<p class="mt-6 text-base leading-7 text-gray-600">Hello, thanks for visiting! I am currently working on an updated design for my website, it'll take some time. Please come back later 😁</p>
<div class="mt-10 flex items-center justify-center gap-x-6">
<a href="https://www.linkedin.com/in/josedulanto/" class="rounded-md bg-indigo-600 px-3.5 py-2.5 text-sm font-semibold text-white shadow-sm hover:bg-indigo-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600">Go to José's LinkedIn profile</a>
</div>
</div>
</main>
</body>
<script>
var secondsToRedirect = 5;
var countdownTimer = setInterval(function(){
if(secondsToRedirect <= 0){
clearInterval(countdownTimer);
document.getElementById("countdown").innerHTML = '';
} else {
document.getElementById("countdown").innerHTML = secondsToRedirect + " sec.";
}
secondsToRedirect -= 1;
}, 1000);
</script>
</html>