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' } ]