website/index.html

95 lines
3.7 KiB
HTML
Raw Normal View History

2024-05-10 17:31:20 -04:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2024-05-11 03:19:40 -04:00
<title>nin0dev</title>
2024-05-10 17:31:20 -04:00
<link rel="stylesheet" href="https://unpkg.com/98.css">
<link rel="stylesheet" href="style.css">
2024-05-11 03:45:52 -04:00
<link rel="icon" type="image/x-icon" href="logo-but-round.png">
2024-05-11 03:50:06 -04:00
<meta name="theme-color" content="#00D0D0">
2024-05-11 03:45:52 -04:00
<meta property="og:url" content="https://nin0dev.com" />
<meta property="og:title" content="nin0dev" />
<meta property="og:description" content="Hey, I'm nin0dev, a Canadian software developer." />
<meta property="og:image" content="https://nin0dev.com/logo.png" />
2024-05-10 17:31:20 -04:00
</head>
<body>
<div class="window" id="main-window">
<div class="title-bar">
<div class="title-bar-text">Home</div>
</div>
<div class="window-body">
<div id="header">
<img src="logo.png" alt="the nin0dev logo" id="pfp">
2024-05-10 18:02:26 -04:00
<h3>nin0dev <span style="font-size: 0.4em;">(he/him)</span></h3>
2024-05-10 17:31:20 -04:00
</div>
<br/>
2024-05-11 03:19:40 -04:00
<div id="presence" style="display: none; margin-bottom: 12px;">
<img src="game.png" id="presence-icon">
<p id="presence-content"></p>
</div>
<fieldset>
<legend>About me</legend>
I'm a Canadian self-taught software developer that makes useless things in Python, HTML, JavaScript, and Kotlin.
<br/>
yeah that's it
</fieldset>
<br/>
2024-05-11 03:19:40 -04:00
<fieldset>
<legend>My projects</legend>
<ul style="margin-top: 5px; margin-bottom: 5px; padding-left: 20px;">
<li>
VendroidEnhanced: A Discord client for Android that loads the mobile website and injects Vencord.
<ul>
<li><a href="https://github.com/VendroidEnhanced/Vendroid">GitHub repo</a></li>
<li>Actively maintained</li>
<li>Fork of <a href="https://github.com/Vencord/Vendroid">Vencord/Vendroid</a></li>
</ul>
</li>
<li>
website: The website you're currently viewing
<ul>
<li><a href="https://github.com/nin0-dev/website">GitHub repo</a></li>
</ul>
</li>
<li>
nin0-bot: A generic kitchen sink bot with basic moderation features
<ul>
<li><a href="https://github.com/nin0-dev/nin0-bot">GitHub repo</a></li>
<li>In maintenance mode, plan to resume development soon</li>
</ul>
</li>
</ul>
</fieldset>
2024-05-11 03:37:27 -04:00
</br>
<fieldset>
<legend>Reach out!</legend>
<ul style="margin-top: 5px; margin-bottom: 5px; padding-left: 20px;">
<li>Discord: @nin0.dev</li>
<li>Email: <a href="mailto:support@nin0dev.com">support@nin0dev.com</a></li>
<li>Telegram: <a href="https://t.me/nin0dev">@nin0dev</a></li>
<li>GitHub: <a href="https://github.com/nin0-dev">nin0-dev</a></li>
</ul>
</fieldset>
<span id="credits" style="display: none;">
<br/>
<fieldset>
2024-05-11 03:37:27 -04:00
<legend>Credits</legend>
<ul style="margin-top: 5px; margin-bottom: 5px; padding-left: 20px;">
2024-05-11 03:37:27 -04:00
<li>UI library: <a href="https://jdan.github.io/98.css/">98.css by jdan</a></li>
<li>Presence/status API: <a href="https://discord.gg/lanyard">Lanyard</a></li>
<li>Icons: <a href="https://win98icons.alexmeub.com/">official Windows 98 icons</a></li>
</ul>
</fieldset>
2024-05-11 03:37:27 -04:00
</span>
<div id="bottom-actions" style="margin-top: 13px;">
<button onclick="showCredits()" id="credits-button">Credits</button>
2024-05-10 17:31:20 -04:00
</div>
</div>
2024-05-11 03:37:27 -04:00
</div>
<script src="https://cdn.jsdelivr.net/npm/lanyard-wrapper/dist/index.browser.js"></script>
<script src="index.js"></script>
2024-05-10 17:31:20 -04:00
</body>
</html>