diff --git a/app/layout.tsx b/app/layout.tsx
index d38f8b7..7fe1621 100644
--- a/app/layout.tsx
+++ b/app/layout.tsx
@@ -31,7 +31,31 @@ export default function RootLayout({
return (
+
+
{children}
diff --git a/app/page.tsx b/app/page.tsx
index 75f9bcb..a442e37 100644
--- a/app/page.tsx
+++ b/app/page.tsx
@@ -42,6 +42,8 @@ export default function Home() {
+
+
diff --git a/components/Nav.tsx b/components/Nav.tsx
index f1005a6..645829c 100644
--- a/components/Nav.tsx
+++ b/components/Nav.tsx
@@ -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 (