aboutsummaryrefslogtreecommitdiff
path: root/app/immigration
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2023-12-08 13:50:45 -0500
committerAndrew Lee <alee14498@protonmail.com>2023-12-08 13:50:45 -0500
commit561046aac669fa04014b40b4b0e78169f3d6e94f (patch)
tree2fdb9cae81a487d952df6bf49a652546b42c4a22 /app/immigration
parentdc726869455c376b8b9b6214536ced05987ba288 (diff)
downloadalure-website-561046aac669fa04014b40b4b0e78169f3d6e94f.tar.gz
alure-website-561046aac669fa04014b40b4b0e78169f3d6e94f.tar.bz2
alure-website-561046aac669fa04014b40b4b0e78169f3d6e94f.zip
New page; Travel advisory update; New post
Diffstat (limited to 'app/immigration')
-rw-r--r--app/immigration/page.js41
1 files changed, 41 insertions, 0 deletions
diff --git a/app/immigration/page.js b/app/immigration/page.js
new file mode 100644
index 0000000..55b4cc3
--- /dev/null
+++ b/app/immigration/page.js
@@ -0,0 +1,41 @@
+import Header from "@/app/components/Header";
+
+export const metadata = {
+ title: 'Immigration',
+ description: 'Planning on immigrating to the Alure Regions? Follow the instructions in this page to get started.',
+}
+
+export default function Immigration() {
+ return (
+ <main className="flex flex-col">
+ <Header title={metadata.title} description={metadata.description}/>
+ <div className="sm:px-40 px-10 py-3 space-y-3 bg-zinc-800">
+ <h1 className="text-2xl font-medium">Getting Started on Immigration</h1>
+ <p>Thinking about making Alure Regions your new home? We are here to guide you through the immigration
+ process.</p>
+ <p>To get started, simply fill in the form below.</p>
+ <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">
+ <a href="https://forms.gle/nUPsqPgTYZ3CcKmk7">
+ Go to Google Form
+ </a>
+ </button>
+ <h1 className="text-2xl font-medium">Sections of the Application</h1>
+ <ul>
+ <li>Personal Information: Provide your Family Name, First Given Name, and Date of Birth.</li>
+ <li>Compliance Affirmation: Check the corresponding boxes for the activities you have undertaken.
+ </li>
+ <li>The Oath of Citizenship: Upload an audio clip of yourself reciting the entire oath.</li>
+ <li>Final Section: Upload your signature.</li>
+ </ul>
+ <h1 className="text-2xl font-medium">What happens upon acceptance?</h1>
+ <p>Upon acceptance, you will receive a letter by mail confirming your acceptance along with a
+ verification code.</p>
+ <p>Next, proceed to the Regional Hall in Alee Isle to submit a valid identification document (such as a
+ Passport or Driver&apos;s License) along with the verification code.</p>
+ <p>Following this, you will be required to visit a passport office to obtain an official
+ government-issued passport.</p>
+ </div>
+ </main>
+ )
+}