-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.tsx
70 lines (66 loc) · 2.88 KB
/
about.tsx
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
import Head from "next/head";
export default function about() {
return (
<div className="flex min-h-screen flex-col items-center justify-center py-2">
<Head>
<title>unselected</title>
<link rel="icon" href="/favicon.ico" />
</Head>
<main className="flex w-full flex-1 flex-col items-center justify-center px-6 lg:px-20 text-center">
<section className="w-full lg:w-2/4 text-justify">
<h1 className="text-4xl text-gray-500 text-center">about</h1>
<p className="mt-3 text-xl text-gray-700">
Unselected is built using GPT3 (Generative Pre-trained Transformer
3) which is an autoregressive language model that uses deep learning
model text-davinci-002 to produce human-like text. The project is
using constraint trail credentials from OpenAI whose API provides
access to GPT3.
</p>
<p className="mt-3 text-xl text-gray-700">
This project runs limited credit OpenAI API calls. If you want to{" "}
<span className="border-b-2 border-gray-700 hover:bg-yellow-200">
sponser
</span>{" "}
or{" "}
<span className="border-b-2 border-gray-700 hover:bg-yellow-200">
donate
</span>{" "}
your API keys to run this project longer, please connect with{" "}
<span className="border-b-2 border-gray-700 hover:bg-yellow-200 cursor-pointer">
<a href="https://twitter.com/herkuch"> Khushal</a>
</span>{" "}
or{" "}
<span className="border-b-2 border-gray-700 hover:bg-yellow-200 cursor-pointer">
<a href="https://twitter.com/parthpandyappp"> Parth</a>
</span>
.
</p>
<p className="mt-3 text-xl text-gray-700">
To know more about this project, visit our{" "}
<span className="border-b-2 border-gray-700 hover:bg-yellow-200 cursor-pointer">
<a href="https://github.com/logan1x/unselected"> github</a>
</span>{" "}
repository.
</p>
</section>
</main>
<footer className="flex h-16 w-full items-center justify-around border-t text-sm lg:text-lg">
<p>
<span className="border-b-2 border-gray-700 hover:border-blue-600 hover:border-b-4">
<a href="/">home</a>
</span>
</p>
<p>
a project by{" "}
<span className="border-b-2 border-gray-700 hover:border-blue-600 hover:border-b-4">
<a href="https://twitter.com/herkuch"> @herkuch</a>
</span>{" "}
and{" "}
<span className="border-b-2 border-gray-700 hover:border-blue-600 hover:border-b-4">
<a href="https://twitter.com/parthpandyappp"> @parthpandyappp</a>
</span>
</p>
</footer>
</div>
);
}