Added new projects page

This commit is contained in:
2026-02-25 07:51:24 -05:00
parent 20d392c09f
commit 7a5f04497b
2 changed files with 32 additions and 4 deletions
+1
View File
@@ -12,6 +12,7 @@ $_nav_pages = [
'/about/' => 'About',
'/log/' => 'Log',
'/links/' => 'Links',
'/projects/' => 'Projects',
'/contact/' => 'Contact',
];
?>
+27
View File
@@ -0,0 +1,27 @@
<?php
$title = 'Projects';
include $_SERVER['DOCUMENT_ROOT'] . '/includes/head.php';
?>
<body class="bg-[#0a0a0a] text-white min-h-screen">
<?php include $_SERVER['DOCUMENT_ROOT'] . '/includes/nav.php'; ?>
<main class="pt-16">
<div class="max-w-3xl mx-auto px-4 sm:px-6 py-12">
<h1 class="text-2xl font-semibold mb-12">Projects</h1>
<div class="space-y-6">
<a href="https://monkeys.sistav.com" target="_blank" rel="noopener noreferrer" class="group block border border-[#1c1c1c] hover:border-[#333] bg-[#0f0f0f] hover:bg-[#111] transition-colors p-6">
<div class="flex items-start justify-between gap-4">
<div>
<h2 class="text-base font-semibold mb-1 group-hover:text-[#e6dfd8] transition-colors">MonKEYS</h2>
<p class="text-neutral-400 text-sm leading-relaxed">Finally, a use for monkey labour.</p>
</div>
<span class="text-neutral-600 text-xs shrink-0 mt-1">monkeys.sistav.com ↗</span>
</div>
</a>
</div>
</div>
</main>
</body>
</html>