-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (76 loc) · 3.12 KB
/
Copy pathindex.html
File metadata and controls
82 lines (76 loc) · 3.12 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
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
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="./assets/avatar.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Portfolio</title>
<link rel="stylesheet" href="./css/style.css">
</head>
<body class="font-mono space-y-16 w-11/12 md:w-4/6 mx-auto my-8 md:mt-0">
<div class="flex flex-col justify-center items-center md:h-screen md:flex-row">
<img class="w-32 h-32" src="./assets/avatar.png" alt="avatar">
<div class="ml-6">
<h1 class="text-2xl md:text-5xl font-bold">Maximilian Kürschner</h1>
<h2 class="text-xl md:text-3xl text-center md:text-left">Programonaut</h2>
</div>
<div class="hidden absolute bottom-6 h-12 w-12 md:block">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2">
<path stroke-linecap="round" stroke-linejoin="round" d="M19 9l-7 7-7-7" />
</svg>
</div>
</div>
<div>
<h3 class="text-2xl font-bold"><ABOUT /></h3>
<div class="space-y-2">
<p>
<strong>Languages:</strong> <code>.c</code>, <code>.cs</code>,
<code>.py</code>, <code>.js</code>, <code>.dart</code>
</p>
<p>
<strong>Fields:</strong> <br />
🎮 Games <br />
☎️ Mobile <br />
💻 Full-Stack Web <br />
🏠 IoT and Automation <br />
🖥️ Other Software…
</p>
<p>
<strong>Projects:</strong> <br />
🏐
<a href="https://play.google.com/store/apps/details?id=com.Deved.Bralls">Bralls</a>
<br />
🎵 <a href="https://playlist.programonaut.com/">Artist to playlist</a>
</p>
<p>
Check out my
<a href="https://programonaut.com"><strong>Website</strong></a>! <br />
Contact me via <strong>mail@programonaut.com</strong> or
<strong>mail@maximilian-kuerschner.de</strong>
</p>
</div>
</div>
<div>
<h3 class="text-2xl font-bold mb-2"><PROJECTS /></h3>
<div class="grid grid-cols-1 auto-rows-fr gap-2 md:grid-cols-2">
<div class="bg-black text-white p-3 rounded-md group">
<h3 class="text-lg font-bold group-hover:underline">Bralls</h3>
<p>A little game.</p>
</div>
<div class="bg-black text-white p-3 rounded-md group">
<h3 class="text-lg font-bold group-hover:underline">Slide for Four</h3>
<p>A one vs. one slide puzzle. Created for the Flutter Puzzle Hack!</p>
</div>
</div>
</div>
<div>
<h3 class="text-2xl font-bold mb-2"><CONTACT /></h3>
<div class="grid grid-cols-1 gap-2 md:grid-cols-4">
<div class="bg-black text-white p-2 rounded-md text-center font-bold text-xl hover:underline">Twitter</div>
<div class="bg-black text-white p-2 rounded-md text-center font-bold text-xl hover:underline">GitHub</div>
<div class="bg-black text-white p-2 rounded-md text-center font-bold text-xl hover:underline">Website</div>
<div class="bg-black text-white p-2 rounded-md text-center font-bold text-xl hover:underline">E-Mail</div>
</div>
</div>
</body>
</html>