aidxnFUN/views/projects.ejs
2024-11-07 13:59:02 -05:00

44 lines
2.7 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>Untitled Project</strong><br>
<span class="text-gray-300">Repo currently private</span><br>
<span class="text-gray-300">Content/file organization system</span>
<span class="text-gray-300">Created for my upcoming public archive website</span>
</li>
<li class="text-white">
<strong>Overseerr</strong><br>
<span class="text-gray-300">Repo currently private</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') %>