update events page

This commit is contained in:
JilianaTiu 2022-09-26 11:56:28 -07:00
parent c19fe6a531
commit 5a3fdae5b2

View file

@ -20,24 +20,11 @@ class Main extends React.Component<MainProps, MainState> {
public render() { public render() {
return <> return <>
<TopBar links={ACTIVE_PAGES}></TopBar> <TopBar links={ACTIVE_PAGES}></TopBar>
<Splash cta="Events" delay={2000} backgrounds={["img/backgrounds/fa21social.png"]}></Splash> <Splash cta="Come out to our events!" delay={2000} backgrounds={["img/backgrounds/fa21social.png"]}></Splash>
<DefaultSection title="" paragraphs={[ <DefaultSection title="" paragraphs={[
"No events yet... Keep an eye out for new upates!" "Outside the classroom, we believe our events should bring us together and help us refine our skills, foster long lasting connections, give back to the community, and prepare us for our careers.",
"In similar fashion, our events are split up each to serve one of these goals: technical, social, K-12 outreach, and professional."
]}></DefaultSection> ]}></DefaultSection>
<DefaultSection title="Have questions? Contact us!">
<div className="join-scls">{
[...EMAIL, ...SOCIALS].map(n => (
<SocialCard url={n.url} image={n.icon} message={n.message}></SocialCard>
))
}</div>
</DefaultSection>
<div id="calendar">
<html>
<iframe id="cal" src="https://calendar.google.com/calendar/embed?height=600&wkst=1&bgcolor=%23ffffff&ctz=America%2FLos_Angeles"></iframe>
</html>
</div>
<DefaultSection title="Officer Open Hours"> <DefaultSection title="Officer Open Hours">
<div> <div>
@ -45,6 +32,13 @@ class Main extends React.Component<MainProps, MainState> {
</div> </div>
</DefaultSection> </DefaultSection>
<DefaultSection title="Have questions? Contact us!">
<div className="join-scls">{
[...EMAIL, ...SOCIALS].map(n => (
<SocialCard url={n.url} image={n.icon} message={n.message}></SocialCard>
))
}</div>
</DefaultSection>
<Footer></Footer> <Footer></Footer>
</>; </>;