From 4337a3e2168982feebb7eb931cdc1c34db86c5d0 Mon Sep 17 00:00:00 2001 From: zramsay Date: Tue, 11 Mar 2025 15:06:33 -0400 Subject: [PATCH] fixes --- src/app/about/page.tsx | 2 +- src/app/debug/page.tsx | 11 ++++++++--- src/app/page.tsx | 2 +- src/app/points/page.tsx | 2 +- src/app/sightings/page.tsx | 2 +- src/components/Navigation.tsx | 10 +++++----- 6 files changed, 17 insertions(+), 12 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 0106013..f307d5b 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -11,7 +11,7 @@ const AboutPage = () => { {/* Header */} -
+

About

diff --git a/src/app/debug/page.tsx b/src/app/debug/page.tsx index d00a52f..dbc466e 100644 --- a/src/app/debug/page.tsx +++ b/src/app/debug/page.tsx @@ -3,6 +3,7 @@ import { useSession, signIn, signOut } from 'next-auth/react'; import { useEffect, useState } from 'react'; import Link from 'next/link'; +import Navigation from '../../components/Navigation'; export default function DebugPage() { const { data: session, status } = useSession(); @@ -23,9 +24,12 @@ export default function DebugPage() { }, []); return ( -
-
-

Auth Debug Page

+
+
+ + +
+

Auth Debug Page

@@ -70,6 +74,7 @@ export default function DebugPage() {
+
); diff --git a/src/app/page.tsx b/src/app/page.tsx index 288f1b8..2f72992 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -85,7 +85,7 @@ const Page: React.FC = (): React.ReactElement => {
-
+

{APP_CONFIG.title}

diff --git a/src/app/points/page.tsx b/src/app/points/page.tsx index 2e28997..66bbff7 100644 --- a/src/app/points/page.tsx +++ b/src/app/points/page.tsx @@ -311,7 +311,7 @@ export default function PointsPage() {
-
+

My Points

diff --git a/src/app/sightings/page.tsx b/src/app/sightings/page.tsx index b0c2e13..9905a7e 100644 --- a/src/app/sightings/page.tsx +++ b/src/app/sightings/page.tsx @@ -167,7 +167,7 @@ export default function AnimalsPage() {
-
+

{APP_CONFIG.title}

diff --git a/src/components/Navigation.tsx b/src/components/Navigation.tsx index ed6db43..b6d0805 100644 --- a/src/components/Navigation.tsx +++ b/src/components/Navigation.tsx @@ -30,17 +30,17 @@ const Navigation = () => { const links = [...baseLinks, ...authLinks, ...devLinks] return ( -
-