diff --git a/src/components/Header.astro b/src/components/Header.astro index 77471bc..8645497 100644 --- a/src/components/Header.astro +++ b/src/components/Header.astro @@ -25,6 +25,7 @@ const { locale } = Astro.params; {tl("nav.programs")} {tl("nav.news")} {tl("nav.archive")} + {tl("nav.nations")}
diff --git a/src/i18n/en.json b/src/i18n/en.json index beccf33..812c455 100644 --- a/src/i18n/en.json +++ b/src/i18n/en.json @@ -6,6 +6,7 @@ "nav.archive": "Archive", "nav.programs": "Programs", "nav.contact": "Contact", + "nav.nations": "Nations", "hero.name": "Dr. José Benjamín Pérez Matos", "hero.title": "Founding Leader", "hero.body": "“My life’s dream is to see the prophets’ vision fulfilled: a world of justice and peace for the good of Israel and all mankind.”", diff --git a/src/i18n/es.json b/src/i18n/es.json index aa9eccb..a4872cf 100644 --- a/src/i18n/es.json +++ b/src/i18n/es.json @@ -5,6 +5,7 @@ "nav.news": "Noticias", "nav.programs": "Programas", "nav.archive": "Archivo", + "nav.nations": "Naciones", "nav.contact": "Contacto", "hero.name": "Dr. José Benjamín Pérez Matos", diff --git a/src/pages/[locale]/archive/nations/[nation].astro b/src/pages/[locale]/nations/[nation].astro similarity index 100% rename from src/pages/[locale]/archive/nations/[nation].astro rename to src/pages/[locale]/nations/[nation].astro diff --git a/src/pages/[locale]/archive/nations/index.astro b/src/pages/[locale]/nations/index.astro similarity index 100% rename from src/pages/[locale]/archive/nations/index.astro rename to src/pages/[locale]/nations/index.astro diff --git a/src/pages/archive/nations/[nation].astro b/src/pages/nations/[nation].astro similarity index 100% rename from src/pages/archive/nations/[nation].astro rename to src/pages/nations/[nation].astro diff --git a/src/pages/archive/nations/index.astro b/src/pages/nations/index.astro similarity index 100% rename from src/pages/archive/nations/index.astro rename to src/pages/nations/index.astro