From f6cc64b3b36836ced50c2f7d089b52e9e329b666 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Mon, 17 Jul 2023 22:20:45 -0400 Subject: Favicons; More responsive stuff --- app/apple-icon.png | Bin 0 -> 2842 bytes app/favicon.ico | Bin 25931 -> 62682 bytes app/icon.png | Bin 0 -> 2842 bytes components/travel-advisory/HistoryModal.js | 4 +--- components/travel-advisory/ListCountries.js | 4 ++-- public/vercel.svg | 1 - 6 files changed, 3 insertions(+), 6 deletions(-) create mode 100644 app/apple-icon.png create mode 100644 app/icon.png delete mode 100644 public/vercel.svg diff --git a/app/apple-icon.png b/app/apple-icon.png new file mode 100644 index 0000000..c8c1fc6 Binary files /dev/null and b/app/apple-icon.png differ diff --git a/app/favicon.ico b/app/favicon.ico index 718d6fe..69df4b6 100644 Binary files a/app/favicon.ico and b/app/favicon.ico differ diff --git a/app/icon.png b/app/icon.png new file mode 100644 index 0000000..c8c1fc6 Binary files /dev/null and b/app/icon.png differ diff --git a/components/travel-advisory/HistoryModal.js b/components/travel-advisory/HistoryModal.js index 9ff835a..3ef2ea8 100644 --- a/components/travel-advisory/HistoryModal.js +++ b/components/travel-advisory/HistoryModal.js @@ -27,9 +27,7 @@ const HistoryModal = ({ isVisible, onClose, countries, dangerLevel, history }) =

History

- +
diff --git a/components/travel-advisory/ListCountries.js b/components/travel-advisory/ListCountries.js index 87e01fc..03665ef 100644 --- a/components/travel-advisory/ListCountries.js +++ b/components/travel-advisory/ListCountries.js @@ -40,7 +40,7 @@ export default function Countries(){ const settlementsList = country.settlements.map((settlement) => { return (
-

{settlement.name}

+

{settlement.name}

{getDangerLevel(settlement.danger)}

) @@ -49,7 +49,7 @@ export default function Countries(){ return (
-

{country.name}

+

{country.name}

{dangerLevel}

{settlementsList}