Model-UN / cimun-web

Web front-end for a political education conference.
https://www.cimun.org
GNU General Public License v3.0
3 stars 2 forks source link

Prop up Conference Page #46

Open sdmungov opened 3 years ago

sdmungov commented 3 years ago

Acceptance Criteria:

FB-Reda commented 3 years ago

Old Site

import React, { Component } from "react";
import "./info.css";

class Info extends Component {

    render() {
        return (
            <div className="container mb-3">
                <div className="align-self-center my-3">
                    <h1 className='mt-3'>Conference Info</h1>
                    <h2>Get ready for this unprecedented experience!</h2>
                    <p>
                        CIMUN VIII is going to be fully virtual, fun and educational... it will be groundbreaking!<br /> On this site you'll find relevant information regarding our Committees and Cabinets for the upcoming edition, such as topics, Background Guides, and additional details.
                    </p>
                    <h2>Virtual Format</h2>
                    <p>
                        This year's conference will be fully virtual to guarantee everybody's wellbeing. The CIMUN team has worked hard to ensure it will be a unique and fun experience for all participants. We have simplified the rules of procedure, picked small and interactive committees, and created a list of innovative dynamics that will make the simulation fast-paced and entertaining. We have created something that you can't miss!
                    </p>
                    <h2>Topic Overview</h2>
                    <p>
                        CIMUN XVII will explore the role of chance. 2020 was the year of the black swan. The low probability became all-encompassing when one small virus changed everything. We learned the world is driven as much by intention as it is by accident. The United States, reeling from a pandemic and domestic unrest, will face pressures at home and abroad. Our conference will bring us to the frontline of the challenge to U.S. leadership in key regions of the world, where age-old rivalries, new threats, and a little bit of chance will make for a truly explosive CIMUN.
                    </p>

                    <div className="row">
                        <div className="col-md" >
                            <h2>Classic Committees</h2>
                            <p>
                                This year’s Present-Day Classic Committees will explore how the struggle for hegemony and challenges against the liberal international order in two key regions, East Asia and the Middle East, intensifies when crises emerge in each. Delegates in these committees will be thrust into a fast-paced geopolitical contest with ever-increasing stakes.
                            </p>
                            <ul>
                                <p>
                                    <li>United Nations General Assembly</li>
                                    <li>United Nations General Assembly UNGA</li>
                                    <li>United Nations Security Council UNSC</li>
                                    <li>Association of Southeast Asian Nations ASEAN</li>
                                    <li>Arab League</li>
                                    <li>Cabinet of the United States of America</li>
                                    <li>Cabinet of the People’s Republic of China</li>
                                    <li>Cabinet of the Russian Federation</li>
                                    <li>Cabinet of Japan</li>
                                    <li>Cabinet of India</li>
                                    <li>Cabinet of South Korea</li>
                                    <li>Cabinet of Iran</li>
                                    <li>Cabinet of Saudi Arabia</li>
                                    <li>Cabinet of Israel</li>
                                </p>
                            </ul>
                        </div>
                        <div className="col-md" >
                        <h2>War Room Committees</h2>
                            <p>
                                This year’s Present-Day War Rooms will dive into the intricacies of our military-industrial complex. We will leave the UN Headquarters in New York and go into the boardrooms of some of the most powerful companies in the defense industry. We will see how defense companies compete against, not only each other, but public opinion and how legislatures respond to the vast muscle of marketing and lobbying giants.
                            </p>
                            <ul>
                                <p>
                                    <li>Lockheed Martin Corporation</li>
                                    <li>The Boeing Company</li>
                                    <li>General Dynamics Corporation</li>
                                    <li>Northrop Grumman Corporation</li>
                                    <li>L3 Harris Technologies</li>
                                    <li>Tactical Missiles Corporation</li>
                                    <li>Bluebird Aero Systems</li>
                                    <li>JSC Sukhoi Company</li>
                                    <li>BAE Systems</li>
                                    <li>Central Intelligence Agency</li>
                                    <li>Department of Defense</li>
                                </p>
                            </ul>
                        </div>
                    </div>

                    <h2>Venue Information</h2>
                    <p className="pb-3">Due to current health restrictions, CIMUN VIII will be held using an online format. We hope to return soon to our regular format. </p>
                    <h2>Costs and Registration</h2>

                    <p>
                        The delegate fee for CIMUN XVII is $50 per delegate. Upon registration and sending final school delegate counts, schools will be invoiced via email, and payment will be due January 30, 2021. We recommend all schools process with a credit card.
                    </p>

                    <p>
                        Delegate numbers may not be lowered after January 15, 2021. After this date, no refunds will be given and your school will be billed for any costs of your expected attendance that are deemed irrecoverable by MUNDO. 
                    </p>

                    <p>
                        Upon registration, our USGA, Rachel Radecki, will contact you with details about position assignments.
                    </p>

                    <p>
                        Contact <a href="mailto:sc@cimun.org">sc@cimun.org</a> or <a href="mailto:rachel.radecki@modelun.net">rachel.radecki@modelun.net</a> with any questions.
                    </p>
                    <button
                        type="button regButton"
                        className="btn registerBtn p-3 mt-2 mb-5"
                        style={{ width: "100%" }}
                    >
                        <a
                            className="white-text"
                            href=" https://docs.google.com/forms/d/e/1FAIpQLSdOfc0h0S9wBkFtCxe_eEHjIcEbFebjhg3_kaOnkPQvs1XxgA/viewform?usp=sf_link"
                            target="_blank"
                        >
                            Register Here
                        </a>
                    </button>
                </div>
            </div>
        );
    }
}

export default Info;