Compare commits

...

2 Commits

Author SHA1 Message Date
9a84d4b78c fixed animation for mobile nav
All checks were successful
Deploy Jody's App / build-and-deploy (push) Successful in 15s
2026-01-07 21:11:42 -06:00
f559a28b74 added favicon and header title; 2026-01-07 21:05:09 -06:00
2 changed files with 6 additions and 3 deletions

3
.gitignore vendored
View File

@@ -29,4 +29,5 @@ Thumbs.db
# Uncomment the ones you're not using
# yarn.lock
# package-lock.json
# pnpm-lock.yamlw
# pnpm-lock.yamlw

View File

@@ -71,8 +71,10 @@ export function Navbar({ onNav }: { onNav: (id: string) => void }) {
</div>
<div
className={`md:hidden transition-[max-height] duration-300 ${
open ? "max-h-96 overflow-visible" : "max-h-0 overflow-hidden"
className={`md:hidden overflow-hidden transition-[max-height,opacity,transform] duration-300 ease-out ${
open
? "max-h-96 opacity-100 translate-y-0"
: "max-h-0 opacity-0 -translate-y-2 pointer-events-none"
}`}
>
<div className="space-y-2 border-t border-secondary bg-bg px-4 py-3">