feat(*): Add initial scaffolding

This commit is contained in:
Josh Creek
2025-04-16 22:41:45 +01:00
parent cc342577cb
commit e4779bfa65
5 changed files with 45 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
<nav class="bg-gray-900 text-white px-4 py-3 flex items-center justify-between">
<div class="font-bold text-lg">
<a href="/">Assessment Agent</a>
</div>
<ul class="flex gap-6">
<li><a href="/upload" class="hover:underline">Upload</a></li>
<li><a href="/results" class="hover:underline">Results</a></li>
<li><a href="/about" class="hover:underline">About</a></li>
</ul>
</nav>