diff --git a/src/components/ContactCard.js b/src/components/ContactCard.js index 24b1881..2a3dad6 100644 --- a/src/components/ContactCard.js +++ b/src/components/ContactCard.js @@ -5,6 +5,10 @@ import Divider from "@material-ui/core/Divider"; import MailIcon from "@material-ui/icons/Mail"; import PhoneIcon from "@material-ui/icons/Phone"; import LocationIcon from "@material-ui/icons/LocationOn"; +import GitHubIcon from "@material-ui/icons/GitHub"; +import LinkedInIcon from "@material-ui/icons/LinkedIn"; +import TwitterIcon from "@material-ui/icons/Twitter"; +import InstagramIcon from "@material-ui/icons/Instagram"; import * as styles from "../styles/components/contactcard.module.scss"; @@ -30,7 +34,7 @@ function ContactCard() { +91 70213 02112 -
+ + diff --git a/src/pages/hackprep/index.js b/src/pages/hackprep/index.js new file mode 100644 index 0000000..6c313f6 --- /dev/null +++ b/src/pages/hackprep/index.js @@ -0,0 +1,109 @@ +import React from "react"; +import { graphql } from "gatsby"; +import { GatsbyImage } from "gatsby-plugin-image"; + +import { makeStyles } from "@material-ui/core/styles"; +import Grid from "@material-ui/core/Grid"; +import Paper from "@material-ui/core/Paper"; +import Button from "@material-ui/core/Button"; +import Table from '@material-ui/core/Table'; +import TableBody from '@material-ui/core/TableBody'; +import TableCell from '@material-ui/core/TableCell'; +import TableContainer from '@material-ui/core/TableContainer'; +import TableHead from '@material-ui/core/TableHead'; +import TableRow from '@material-ui/core/TableRow'; + + +import Carousel from "../../components/Carousel"; +import Layout from "../../components/Layout"; +import AvatarHelper from "../../components/AvatarHelper"; +import unicode from "../../images/unicode-logo.svg" + +import * as styles from "../../styles/templates/itemDetail.module.scss"; + +function createData(date, stack) { + return { date, stack }; +} + +const rows = [ + createData('6th May', 'Frontend/Design & Node'), + createData('8th May', 'Python/Django + Flutter'), +]; + +const useStyles = makeStyles((theme) => ({ + grid: { + height: "100vh", + backgroundColor: "#3d3d3d", + }, + image: { + height: "90%", + width: "70%", + margin: "5%", + marginLeft: "15%" + }, + +})); +function EventDetails() { + // Avatars img fix + const classes = useStyles() + return ( +HackPrep is an annual series of events hosted by DJ Unicode in hopes to introduce the world of development to first-year coders. The aim of the event is to create a one-stop place to head-start their hackathon journeys, and cover important topics related to frontend, backend, and app development. Through HackPrep, we will be ensuring freshers get a clear idea of how to go about exploring the vast world of development, navigate through a plethora of resources, and eventually start building their own projects.
+