removed period + reorder pages

This commit is contained in:
Noah Swerhun 2024-04-08 10:41:46 -05:00
parent b2cef72859
commit d1c3933ced
2 changed files with 2 additions and 2 deletions

View file

@ -4,7 +4,7 @@ import Nav from "@/components/Nav.tsx";
<header class="my-10 w-fit mx-auto">
<h1 class="text-4xl md:text-6xl font-bold font-display text-center">
J. Hunter DeLoche.
J. Hunter DeLoche
</h1>
<div transition:persist>
<Nav client:load />

View file

@ -7,8 +7,8 @@ interface Page {
const pages: Page[] = [
{ path: "/", name: "about" },
{ path: "/writing", name: "writing" },
{ path: "/music", name: "music" },
{ path: "/writing", name: "writing" },
]
const inactiveClasses = "text-xl text-fg_light transition-all duration-300 hover:scale-[110%] hover:text-foreground align-middle";