From 44ec2458c86d62dc74d4640d8ef77a7a009f2f0a Mon Sep 17 00:00:00 2001 From: zramsay Date: Sun, 2 Feb 2025 12:39:06 -0500 Subject: [PATCH] rename /animals -> /sightings --- src/app/{animals => sightings}/page.tsx | 2 +- src/components/Navigation.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename src/app/{animals => sightings}/page.tsx (99%) diff --git a/src/app/animals/page.tsx b/src/app/sightings/page.tsx similarity index 99% rename from src/app/animals/page.tsx rename to src/app/sightings/page.tsx index 72165e0..ddb1d7b 100644 --- a/src/app/animals/page.tsx +++ b/src/app/sightings/page.tsx @@ -1,4 +1,4 @@ -// src/app/animals/page.tsx +// src/app/sightings/page.tsx 'use client' diff --git a/src/components/Navigation.tsx b/src/components/Navigation.tsx index 520b4a1..71a43e6 100644 --- a/src/components/Navigation.tsx +++ b/src/components/Navigation.tsx @@ -9,7 +9,7 @@ const Navigation = () => { const links = [ { href: '/', label: 'Home' }, - { href: '/animals', label: 'Sightings' }, + { href: '/sightings', label: 'Sightings' }, { href: '/about', label: 'About' } ]