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