Skip to content

Commit

Permalink
add new models page
Browse files Browse the repository at this point in the history
  • Loading branch information
sneakycrow committed Sep 17, 2024
1 parent d589832 commit 141df9a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/routes/art/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@
copy: "photos",
href: "/art/photos",
color: "text-blue-500"
},
{
copy: "models",
href: "/art/models",
color: "text-yellow-500"
}
];
</script>
Expand All @@ -22,7 +27,7 @@
<a
href={link.href}
class={`text-2xl uppercase font-bold ${
$page.url.pathname.startsWith(link.href) ? link.color : "text-gray-500"
$page.url.pathname.startsWith(link.href) ? link.color : "text-white/25"
}`}>{link.copy}</a
>
{/each}
Expand Down
5 changes: 5 additions & 0 deletions src/routes/art/models/+page.svelte
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<h1 class="text-4xl font-bold text-center my-8">Coming Soon</h1>
<p class="text-center">
Among my many other talents, I also love to do 3D modeling. I'll be adding my models, assets, and
other 3d printing publications here
</p>

0 comments on commit 141df9a

Please sign in to comment.