From b960da50af564bfcb96e6897503431512d410398 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Sun, 10 Dec 2023 11:30:31 -0500 Subject: Travel advisory update; Added an override --- app/travel-advisory/ListCountries.js | 6 +++++- app/travel-advisory/countries.json | 3 ++- app/travel-advisory/page.js | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/app/travel-advisory/ListCountries.js b/app/travel-advisory/ListCountries.js index ac87814..35d7032 100644 --- a/app/travel-advisory/ListCountries.js +++ b/app/travel-advisory/ListCountries.js @@ -3,7 +3,11 @@ import countriesData from '@/app/travel-advisory/countries.json' assert { type: import HistoryModal from "@/app/travel-advisory/HistoryModal"; import { useState } from "react"; -export function getDangerLevel(danger) { +export function getDangerLevel(danger, override) { + if (danger === 0 && override !== undefined) { + danger = override; + } + let dangerLevel; switch (danger) { case 0: diff --git a/app/travel-advisory/countries.json b/app/travel-advisory/countries.json index cf4812e..d91e5f5 100644 --- a/app/travel-advisory/countries.json +++ b/app/travel-advisory/countries.json @@ -190,7 +190,8 @@ "image": "/countries/solstice.webp", "settlements": [], "history": [ - "December 10th, 2023: Potential risk for Kemonomimis as the government is planning on passing a law that would risk their lives." + "December 10th, 2023: Potential risk for Kemonomimis as the government is planning on passing a law that would risk their lives.", + "- Corruption within the government is rising." ] }, { diff --git a/app/travel-advisory/page.js b/app/travel-advisory/page.js index a9e94c0..9e13e36 100644 --- a/app/travel-advisory/page.js +++ b/app/travel-advisory/page.js @@ -20,7 +20,7 @@ export default async function TravelAdvisory(){
  • Exercise a high degree of caution

    There are certain safety and security concerns or the situation could change quickly. Be very cautious at all times, monitor local media and follow the instructions of local authorities.

    -

    IMPORTANT: The two levels below are official Government of Alure Regions Travel Advisories and are issued when the safety and security of Alurians travelling or living in the country or region may be at risk.

    +

    IMPORTANT: The two levels below are official Government of Alure Regions Travel Advisories and are issued when the safety and security of Alurians travelling or living in the country or region may be at risk.

  • Avoid non-essential travel

    -- cgit v1.2.3