-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
173 lines (172 loc) · 5.06 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>bananajeanss's Portfolio</title>
<meta
name="description"
content="A showcase of my projects and skills in software development."
/>
<meta
name="keywords"
content="software, development, programming, python, html, css, javascript"
/>
<meta name="author" content="bananajeanss" />
<meta name="theme-color" content="#003882" />
<meta name="image" content="assets/favicon/favicon-32x32.png" />
<link rel="stylesheet" href="index.css" />
<link rel="icon" href="assets/favicon/favicon.ico" type="image/x-icon" />
<link
rel="assets/favicon/apple-touch-icon"
sizes="180x180"
href="/apple-touch-icon.png"
/>
<link
rel="icon"
type="assets/favicon/favicon-32x32"
sizes="32x32"
href="/favicon-32x32.png"
/>
<link
rel="icon"
type="assets/favicon/favicon-16x16"
sizes="16x16"
href="/favicon-16x16.png"
/>
<link rel="manifest" href="/site.webmanifest" />
</head>
<body>
<header>
<h1>bananajeanss.github.io</h1>
<nav>
<ul>
<li>
<a href="#about">About Me</a>
|
<a href="#projects">Projects</a>
|
<a href="#contact">Contact</a>
|
<a href="blog/">Blog</a>
</li>
</ul>
</nav>
</header>
<hr />
<main>
<section id="about">
<div class="about">
<div class="profile">
<h2>Welcome to my portfolio!</h2>
<a href="https://github.com/bananajeanss" target="_blank">
<img
src="https://github.com/bananajeanss.png"
alt="Profile Picture"
class="profile-pic"
/>
</a>
</div>
<a href="https://skillicons.dev">
<img
src="https://skillicons.dev/icons?i=js,php,postgres,html,css,lua,py,linux"
alt="SkillIcons"
/>
</a>
<p>
I am a developer from Estonia with a passion for creating software
that is both functional and beautiful. I have experience in a
variety of programming languages. Check out my projects to see some
of my work!
</p>
<br />
</div>
</section>
<hr />
<section id="projects">
<h2>Notable Projects</h2>
<div class="projects">
<a href="https://github.com/bananajeanss/iracingrpc" target="_blank">
<div class="project">
<h3>iRacing Rich Presence</h3>
<img src="assets/irpc.png" alt="iRacingRPC Logo" />
<p>
Adds rich presence data to Discord from iRacing using pyirsdk.
</p>
<div class="skills">Python</div>
</div>
</a>
<a href="https://bananajns.site" target="_blank">
<div class="project">
<h3>bananajns.site</h3>
<img
src="assets/favicon/favicon-32x32.png"
alt="Favicon"
style="width: 25%; max-width: 25"
/>
<p>My personal portfolio website, self-hosted.</p>
<div class="skills">HTML, CSS</div>
</div>
</a>
</div>
</section>
<hr />
<section id="blog">
<h2>Blog</h2>
<p>
Check out my blog for updates on my projects and other things I'm
working on.
</p>
<div class="projects">
<a href="https://bananajns.site/blog">
<div class="project" style="width: 50vmax">
<h3>BananaJeans Blog</h3>
<img
src="assets/screenshot3.png"
alt="Screenshot of the BananaJeans Blog"
style="padding: 1.5%"
/>
<p>Development stuff, gallery, updates, and more.</p>
<div class="skills">WordPress</div>
</div>
</a>
</div>
</section>
<hr />
<section id="contact">
<h2>Contact</h2>
<ul>
<li>
<a href="https://github.com/bananajeanss" target="_blank">Github</a>
</li>
<li>
<a
href="https://discord.com/users/269514812881502209"
target="_blank"
>Discord Profile</a
>
</li>
<li>
<a href="https://discord.gg/m3jARGzvGs" target="_blank"
>Discord Server</a
>
</li>
<li>
<a href="mailto:[email protected]" target="_blank"
>
</li>
</ul>
</section>
</main>
<footer>
<p>© 2024 BananaJeans</p>
<img
src="assets/estoniaemoji.png"
alt="Flag of Estonia"
width="35px"
height="35px"
/>
</footer>
</body>
</html>