Skip to content
Snippets Groups Projects
Commit 118f4b17 authored by Albert Dong's avatar Albert Dong
Browse files

navbar update

parent 2455b03b
No related merge requests found
...@@ -2,16 +2,19 @@ ...@@ -2,16 +2,19 @@
import "../app.css"; import "../app.css";
</script> </script>
<nav class="mb-2"> <div class="divide-y divide-solid divide-stone-600">
<a href="/">standard</a> <div class="flex flex-row items-center justify-between">
<a href="/double">double-sided</a> <p class="text-xl font-semibold pl-2">Bead Generation</p>
<a href="/spherical">spheres</a> <nav class="py-1 px-2 font-sans">
<a href="/structures">structures</a> <a href="/" class="hover:text-blue-800 px-2">Standard</a>
</nav> <a href="/double" class="hover:text-blue-800 px-2">Complex</a>
<slot /> <a href="/spherical" class="hover:text-blue-800 px-2">Spheres</a>
<a href="/structures" class="hover:text-blue-800 px-2">Structures</a>
</nav>
</div>
<slot />
</div>
<style> <style>
a {
@apply m-2;
}
</style> </style>
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment