aboutsummaryrefslogtreecommitdiff
path: root/app/travel-advisory
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2023-07-14 22:13:22 -0400
committerAndrew Lee <alee14498@protonmail.com>2023-07-14 22:13:22 -0400
commit05d94ac042a1322f771cd852101f15003f7ab573 (patch)
tree05672e4a32ebe63eb24e2f37c0eee58e38ac2a61 /app/travel-advisory
parent189edd99b92244e342a3a7af1d7699525d72d965 (diff)
downloadalure-website-05d94ac042a1322f771cd852101f15003f7ab573.tar.gz
alure-website-05d94ac042a1322f771cd852101f15003f7ab573.tar.bz2
alure-website-05d94ac042a1322f771cd852101f15003f7ab573.zip
Updated travel advisory, added leaders of regions
Diffstat (limited to 'app/travel-advisory')
-rw-r--r--app/travel-advisory/page.js37
1 files changed, 37 insertions, 0 deletions
diff --git a/app/travel-advisory/page.js b/app/travel-advisory/page.js
new file mode 100644
index 0000000..2e4c852
--- /dev/null
+++ b/app/travel-advisory/page.js
@@ -0,0 +1,37 @@
+export default function TravelAdvisory(){
+ return (
+ <main className="flex flex-col">
+ <div className="bg-center bg-no-repeat bg-[url('/jumbotron.png')] bg-gray-700 bg-blend-multiply">
+ <div className="px-4 mx-auto max-w-screen-xl text-left py-24 lg:py-10 space-y-3">
+ <h1 className="font-medium text-2xl">Travel Advisory</h1>
+ <h2 className="font-light text-lg">Information whether its safe to travel to other countries</h2>
+ <h2 className="font-light text-lg">This page may be inaccurate at times, please refer to the discord for latest updates</h2>
+ </div>
+ </div>
+ <div>
+ <h1 className="text-3xl p-5">Legend</h1>
+ <ul>
+ <li className="p-4 bg-green-900">
+ <p className="text-center">Take normal security precautions</p>
+ </li>
+ <li className="p-4 bg-yellow-700">
+ <p className="text-center">Exercise a high degree of caution</p>
+ </li>
+ <li className="p-4 bg-orange-700">
+ <p className="text-center">Avoid non-essential travel</p>
+ </li>
+ <li className="p-4 bg-red-700">
+ <p className="text-center">Avoid all travel</p>
+ </li>
+ </ul>
+ </div>
+ <div className="bg-center bg-no-repeat bg-[url('/regions/silicon-valley.png')] bg-gray-600 bg-blend-multiply">
+ <div className="px-4 mx-3 max-w-screen-xl text-left py-10 space-y-3">
+ <h1 className="font-medium text-5xl">Country name</h1>
+ <h2 className="text-lg">Take normal security precautions</h2>
+ <button className="bg-blue-600 px-4 py-2">Information</button>
+ </div>
+ </div>
+ </main>
+ )
+}