From 3652f1663fbd59ce2a48ab57ae17ff334976be1a Mon Sep 17 00:00:00 2001 From: JilianaTiu Date: Tue, 13 Sep 2022 14:05:10 -0700 Subject: [PATCH] add events page --- src/public/events.tsx | 56 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 src/public/events.tsx diff --git a/src/public/events.tsx b/src/public/events.tsx new file mode 100644 index 0000000..3836021 --- /dev/null +++ b/src/public/events.tsx @@ -0,0 +1,56 @@ +import * as ReactDom from "react-dom"; +import * as React from "react"; +import TopBar from "./components/TopBar"; +import {ACTIVE_PAGES, SOCIALS, EMAIL, OFFICERS} from "./Config"; +import Splash from "./components/Splash"; +import DefaultSection from "./components/DefaultSection"; +import InvolveBox from "./components/InvolveBox"; +import SocialCard from "./components/SocialCard"; +import Carousel from "./components/Carousel"; +import Footer from "./components/Footer"; + +interface MainProps {} +interface MainState {} + +class Main extends React.Component { + constructor(props: MainProps) { + super(props); + this.state = {}; + } + public render() { + return <> + + +
+
Join us at the Project Space!
+

The IEEE Project Space is an open-access, collaborative space where students can do homework or get access to basic electronic tools such as soldering stations, breadboard components, and Arduino and Raspberry PI parts!

+ Come visit at EBU1-4710! +
+ +
+ + + +
+
+ +
{ + [...EMAIL, ...SOCIALS].map(n => ( + + )) + }
+
+ + + +
+ ; + } +} + +ReactDom.render(
, document.getElementById("root")); + +export default {}; \ No newline at end of file