-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (55 loc) · 2.93 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
<!doctype html>
<html>
<head>
<!-- ... -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="./styles.css" rel="stylesheet">
<title>Wayde</title>
</head>
<body>
<div class="min-h-screen bg-blue-400 flex justify-center items-center h-screen">
<div class="text-center font-bold">
<h2 class="lg:text-8xl sm:text-6xl text-7xl mb-10 text-white">
Hey there!
</h2>
<h3 class="lg:text-4xl sm:text-6xl text-xl mb-10 text-white">
I'm Wayde.
</h3>
<h6 class="lg:text-2xl sm:text-6xl text-xl mb-10 text-white">
I write things.
</h6>
<h4 class="lg:text-sm sm:text-6xl text-xl mb-10 text-white">
What I do:
I write code for the game osu!, work on my own Discord Bot called AlphaX,<br>
and write a wrapper for the v2 osu! API called op.py.<br>
When I'm not coding, I'm normally attending school. I am training in Level 3 IT,<br>
while also looking at future jobs to do with coding and IT
</h4>
<a
href="https://github.com/waydealphax" class="text-white text-xl font-bold flex justify-center items-center transform hover:scale-110 duration-300">
Github
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 ml-2" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 20l4-16m4 4l4 4-4 4M6 16l-4-4 4-4" />
</svg>
</a>
<a
href="https://bot.alphaxdev.xyz" class="text-white text-xl font-bold flex justify-center items-center transform hover:scale-110 duration-300">
AlphaX
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 ml-2" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9.75 17L9 20l-1 1h8l-1-1-.75-3M3 13h18M5 17h14a2 2 0 002-2V5a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z" />
</svg>
</a>
<a
href="https://tixte.com" class="text-white text-xl font-bold flex justify-center items-center transform hover:scale-110 duration-300">
Tixte
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 ml-2" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 16a4 4 0 01-.88-7.903A5 5 0 1115.9 6L16 6a5 5 0 011 9.9M15 13l-3-3m0 0l-3 3m3-3v12" />
</svg>
</a>
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>