-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
77 lines (77 loc) · 2.8 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>WebRewind</title>
<meta
name="description"
content="ChatGPT Plugin to discover how the web looked like in the past"
/>
<meta name="keywords" content="chatgpt,openai,gpt-4,plugin" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="py-6 dark:text-white dark:bg-gray-900">
<section class="flex flex-col gap-y-3 md:py-12">
<img src="./webrewind.png" alt="WebRewind logo" class="w-32 md:w-32 mx-auto" />
<h1
class="text-4xl md:text-6xl tracking-tight font-extrabold text-center"
>
WebRewind
</h1>
<p class="text-2xl md:text-2xl text-center">
🌎 Discover how the web looked like in the past. ⌛️
</p>
<p class="text-2xl md:text-2xl text-center text-green-600 dark:text-green-300">
WebRewind is winding down. It will be part of the past.
</p>
<p class="text-xl md:text-xl text-center text-neutral-600 dark:text-neutral-300">
Last day 13th May 2024. Follow
<a
href="https://twitter.com/360macky"
class="text-green-600 dark:text-green-300 underline underline-offset-8"
>@360macky</a
>
for updates.
</p>
<img src="./badge.svg" alt="" class="w-44 mx-auto pt-2" />
<p class="md:text-2xl text-center"></p>
</section>
<iframe
height="315"
class="w-full md:w-[560px] mx-auto rounded-xl"
src="https://www.youtube.com/embed/vI3aSO3KTFw?controls=0"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
class="rounded-xl mx-auto"
allowfullscreen
></iframe>
<section
class="py-6 bg-gray-50 dark:bg-gray-800 max-w-5xl mx-auto md:rounded-xl p-6 mt-8 border"
>
<h2 class="text-2xl md:text-3xl font-bold mb-3">How to install?</h2>
<ol class="md:text-xl">
<li>
1. Go to
<a href="https://chat.openai.com" class="underline">ChatGPT</a>
</li>
<li>2. Switch to GPT-4 and enable Plugins</li>
<li>3. Search "WebRewind" in the ChatGPT Plugin Store</li>
</ol>
</section>
<footer class="py-6 max-w-5xl mx-auto p-6 mt-8">
<p class="text-center">
Open-source project by
<a href="https://twitter.com/360macky" class="underline"
>Marcelo Arias</a
>.
</p>
<p class="text-center">
Powered by GPT-4 and Vercel Serverless Functions.
</p>
</footer>
</body>
</html>