added noscript component

This commit is contained in:
Hunter W.
2026-06-09 18:11:17 -04:00
parent 5cc96b4ef1
commit 116a2ca06b
3 changed files with 34 additions and 3 deletions

View File

@@ -5,12 +5,17 @@ import Link from "next/link";
type Props = {
section: string;
subtitle?: string;
};
const items = ["profile", "project"];
export default function Nav({ section, subtitle }: Props) {
export default function Nav({ section }: Props) {
let subtitle = null;
if (section == "project"){
}
return (
<nav
style={{