Finish adding Aboutme, projects, and socials pages

This commit is contained in:
2026-05-27 21:57:57 -05:00
parent 2077195d2d
commit 7d7afcc1e2
8 changed files with 193 additions and 16 deletions

35
projects.html Normal file
View File

@@ -0,0 +1,35 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Projects - Lucielle's Page</title>
<link rel="stylesheet" href="assets/css/global.css">
<link rel="stylesheet" href="assets/css/projects.css">
<link rel="stylesheet" href="assets/css/links.css">
</head>
<body>
<main>
<a href="https://git.lunarware.tech/lucielle/website" target="_blank" class="container">
<span class="title">Website</span>
<span class="description">This website is open source!</span>
</a>
<a href="https://git.lunarware.tech/lucielle/LLog" target="_blank" class="container">
<span class="title">LLog</span>
<span class="description">My implementation of logging in C.</span>
</a>
<a href="https://git.lunarware.tech/lucielle/lsort" target="_blank" class="container">
<span class="title">LSort</span>
<span class="description">My implementation of common sorting algorithms.</span>
</a>
</main>
<div id="links">
<a class="link" href="/">Home</a>
<a class="link" href="/aboutme.html">About Me</a>
<a class="link" href="/socials.html">Socials</a>
</div>
</body>
</html>