aboutsummaryrefslogtreecommitdiff
path: root/app/travel-advisory
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2023-07-18 12:12:35 -0400
committerAndrew Lee <alee14498@protonmail.com>2023-07-18 12:15:23 -0400
commit3c80755e70aa85daa59edc5dbe200400894254c7 (patch)
tree2f27b203b06dfbc68ab046bbf356a521e62ed0c8 /app/travel-advisory
parentf6cc64b3b36836ced50c2f7d089b52e9e329b666 (diff)
downloadalure-website-3c80755e70aa85daa59edc5dbe200400894254c7.tar.gz
alure-website-3c80755e70aa85daa59edc5dbe200400894254c7.tar.bz2
alure-website-3c80755e70aa85daa59edc5dbe200400894254c7.zip
Added latest news; Some font changes; Some tweaks
Diffstat (limited to 'app/travel-advisory')
-rw-r--r--app/travel-advisory/page.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/travel-advisory/page.js b/app/travel-advisory/page.js
index b4d845f..415b6c2 100644
--- a/app/travel-advisory/page.js
+++ b/app/travel-advisory/page.js
@@ -1,4 +1,4 @@
-import ListCountries from "@/components/travel-advisory/ListCountries";
+import { Countries, getDangerLevel } from "@/components/travel-advisory/ListCountries";
import Header from "@/components/Header";
export const metadata = {
@@ -33,7 +33,7 @@ export default async function TravelAdvisory(){
</ul>
</div>
<div className="sm:px-40 px-10 py-3 bg-blue-800"><h2 className="font-medium text-lg"><b className="font-bold">WARNING!</b> This page may be inaccurate at times, refer to the <a href="https://discord.com/channels/277922530973581312/1019705091336446052" className="transition ease-in-out transition-200 text-blue-300 hover:text-blue-200 active:text-blue-500">Minecraft General Announcements</a> channel for the latest updates</h2></div>
- <ListCountries />
+ <Countries />
</main>
)
}