diff options
| -rw-r--r-- | app/apple-icon.png | bin | 0 -> 2842 bytes | |||
| -rw-r--r-- | app/favicon.ico | bin | 25931 -> 62682 bytes | |||
| -rw-r--r-- | app/icon.png | bin | 0 -> 2842 bytes | |||
| -rw-r--r-- | components/travel-advisory/HistoryModal.js | 4 | ||||
| -rw-r--r-- | components/travel-advisory/ListCountries.js | 4 | ||||
| -rw-r--r-- | public/vercel.svg | 1 |
6 files changed, 3 insertions, 6 deletions
diff --git a/app/apple-icon.png b/app/apple-icon.png Binary files differnew file mode 100644 index 0000000..c8c1fc6 --- /dev/null +++ b/app/apple-icon.png diff --git a/app/favicon.ico b/app/favicon.ico Binary files differindex 718d6fe..69df4b6 100644 --- a/app/favicon.ico +++ b/app/favicon.ico diff --git a/app/icon.png b/app/icon.png Binary files differnew file mode 100644 index 0000000..c8c1fc6 --- /dev/null +++ b/app/icon.png 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 }) = </div> <div> <h1 className="font-medium text-2xl pt-3">History</h1> - <ul> - {historyList} - </ul> + <ul>{historyList}</ul> </div> </div> </div> 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 ( <div key={settlement.name}> - <h2 className="font-medium text-3xl">{settlement.name}</h2> + <h2 className="font-medium md:text-3xl text-xl">{settlement.name}</h2> <h2 className="text-base">{getDangerLevel(settlement.danger)}</h2> </div> ) @@ -49,7 +49,7 @@ export default function Countries(){ return ( <div key="countries" className="bg-center bg-no-repeat bg-[image:var(--image-url)] bg-gray-500 bg-blend-multiply" style={{'--image-url': `url(${country.image})`}} > <div className="sm:px-40 px-10 py-10 space-y-3"> - <h1 className="font-medium text-5xl">{country.name}</h1> + <h1 className="font-medium md:text-5xl text-3xl">{country.name}</h1> <h2 className="text-lg">{dangerLevel}</h2> <div className="space-y-3">{settlementsList}</div> <button className="transition duration-200 ease-in-out px-4 py-2 font-medium rounded-full bg-blue-600 hover:bg-blue-700 active:bg-blue-800" onClick={()=> { diff --git a/public/vercel.svg b/public/vercel.svg deleted file mode 100644 index d2f8422..0000000 --- a/public/vercel.svg +++ /dev/null @@ -1 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 283 64"><path fill="black" d="M141 16c-11 0-19 7-19 18s9 18 20 18c7 0 13-3 16-7l-7-5c-2 3-6 4-9 4-5 0-9-3-10-7h28v-3c0-11-8-18-19-18zm-9 15c1-4 4-7 9-7s8 3 9 7h-18zm117-15c-11 0-19 7-19 18s9 18 20 18c6 0 12-3 16-7l-8-5c-2 3-5 4-8 4-5 0-9-3-11-7h28l1-3c0-11-8-18-19-18zm-10 15c2-4 5-7 10-7s8 3 9 7h-19zm-39 3c0 6 4 10 10 10 4 0 7-2 9-5l8 5c-3 5-9 8-17 8-11 0-19-7-19-18s8-18 19-18c8 0 14 3 17 8l-8 5c-2-3-5-5-9-5-6 0-10 4-10 10zm83-29v46h-9V5h9zM37 0l37 64H0L37 0zm92 5-27 48L74 5h10l18 30 17-30h10zm59 12v10l-3-1c-6 0-10 4-10 10v15h-9V17h9v9c0-5 6-9 13-9z"/></svg>
\ No newline at end of file |
