diff --git a/public/sitemap.xml b/public/sitemap.xml deleted file mode 100644 index 25f5416..0000000 --- a/public/sitemap.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - https://redarclabs.com/ - 2026-06-13 - monthly - 1.0 - - diff --git a/src/components/Nav.astro b/src/components/Nav.astro index acc7c50..787af41 100644 --- a/src/components/Nav.astro +++ b/src/components/Nav.astro @@ -1,18 +1,21 @@ --- import ThemeToggle from './ThemeToggle.astro'; +// Section anchors are prefixed with `/` so they resolve to the homepage from +// any route (e.g. /#publications works from /talks); Community is a real page. const links = [ - { label: 'Publications', href: '#publications' }, - { label: 'Research', href: '#research' }, - { label: 'About', href: '#about' }, - { label: 'Team', href: '#team' }, + { label: 'Publications', href: '/#publications' }, + { label: 'Research', href: '/#research' }, + { label: 'Community', href: '/community' }, + { label: 'About', href: '/#about' }, + { label: 'Team', href: '/#team' }, ]; ---