57 lines
3.9 KiB
Plaintext
57 lines
3.9 KiB
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>❄️ aidxn.fun | projects</title>
|
|
<link href="/css/main.css" rel="stylesheet">
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Afacad+Flux:wght@100..1000&display=swap" rel="stylesheet">
|
|
</head>
|
|
<body class="bg-gradient-to-br from-slate-900 to-black text-white font-afacad-flux">
|
|
<%- include('shards/header.ejs', { req: req }) %>
|
|
<header class="flex flex-col items-center justify-center h-[40vh] p-6">
|
|
<h1 class="text-5xl font-bold mb-2 text-center">Projects</h1>
|
|
<p class="text-lg text-gray-300 max-w-xl text-center mt-3">Looking to learn more about my projects?</p>
|
|
</header>
|
|
<div class="bg-gradient-to-br from-slate-800/80 to-slate-900/80 border border-slate-800 backdrop-blur-md shadow-xl rounded-2xl p-8 mx-4">
|
|
<h3 class="text-2xl font-bold mb-4 text-white">Currently working on</h3>
|
|
<p class="text-slate-300 mb-4">You can check out my GitHub account right <a href="https://github.com/ihatenodejs">here</a>.</p>
|
|
<p class="text-slate-300 mb-4">I am currently working on the following projects (in order of activity):</p>
|
|
<ul class="list-disc pl-5 space-y-2">
|
|
<li class="text-white">
|
|
<strong>aidxnFUN</strong><br>
|
|
<a href="https://github.com/ihatenodejs/aidxnFUN" class="text-gray-300 underline">Repo public</a><br>
|
|
<span class="text-gray-300">The website you are currently viewing</span>
|
|
</li>
|
|
<li class="text-white">
|
|
<strong>pontus</strong><br>
|
|
<a href="https://github.com/ihatenodejs/pontus" class="text-gray-300 underline">Repo public</a> | <a href="https://p0ntus.com" class="text-gray-300 underline">Website</a><br>
|
|
<span class="text-gray-300">Website for my online self</span><br>
|
|
<span class="text-gray-300">Intended for showcasing online projects and storing archives</span>
|
|
<span class="text-gray-300">Replacement for scrapped project: Adderall.</span>
|
|
</li>
|
|
<li class="text-white">
|
|
<strong>Android Integrity Alliance</strong><br>
|
|
<a href="https://github.com/AndroidIntegrity/website" class="text-gray-300 underline">Repo public</a> | <a href="https://androidintegrity.org" class="text-gray-300 underline">Website</a><br>
|
|
<span class="text-gray-300">Collaboration with several people</span><br>
|
|
<span class="text-gray-300">Website for petition against Google Play Integrity</span>
|
|
</li>
|
|
<li class="text-white">
|
|
<strong>pontus-bot</strong><br>
|
|
<a href="https://github.com/ihatenodejs/pontus-bot" class="text-gray-300 underline">Repo public</a> | <a href="https://github.com/ihatenodejs/pontus-bot/pkgs/container/pontus-bot/315781719?tag=main" class="text-gray-300 underline">Docker Image</a><br>
|
|
<span class="text-gray-300">Dockerized</span><br>
|
|
<span class="text-gray-300">Telegram file indexer bot</span>
|
|
</li>
|
|
<li class="text-white">
|
|
<strong>Overseerr</strong><br>
|
|
<span class="text-gray-300">Repo currently private / In development (backburnered)</span><br>
|
|
<span class="text-gray-300">Manage your server from an easy-to-use and responsive interface</span>
|
|
</li>
|
|
</ul>
|
|
<h3 class="text-2xl font-bold mb-4 mt-4 text-white">Finished projects</h3>
|
|
<p class="text-slate-300 mb-4">I currently have only one public project which is in finished state. It's my old website, which is now being hosted at <a class="underline" href="https://old.aidxn.fun/">old.aidxn.fun</a>. It features a 2000s design and flashy graphics!</p>
|
|
</div>
|
|
<script src="js/main.js"></script>
|
|
<%- include('shards/footer.ejs') %> |