forked from ThetaHacks/thetahacks2022
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Finish Volunteers Section, fixed images
- Loading branch information
Showing
35 changed files
with
110 additions
and
15 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
export { default as v1 } from "./DevrinCommCute.jpg"; | ||
export { default as v2 } from "./DevrinCommCute.jpg"; | ||
export { default as v3 } from "./DevrinCommCute.jpg"; | ||
export { default as v4 } from "./DevrinCommCute.jpg"; | ||
export { default as v5 } from "./DevrinCommCute.jpg"; | ||
export { default as v6 } from "./DevrinCommCute.jpg"; | ||
export { default as v7 } from "./DevrinCommCute.jpg"; | ||
export { default as v8 } from "./DevrinCommCute.jpg"; | ||
export { default as v9 } from "./DevrinCommCute.jpg"; | ||
export { default as v10 } from "./DevrinCommCute.jpg"; |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import React from "react"; | ||
import "./profile.css"; | ||
function Profile(props) { | ||
return ( | ||
<figure className="profile-container"> | ||
<a href={props.link}> | ||
<img className="profileImg" src={props.img} alt={props.name} /> | ||
<figcaption class="caption">{props.name}</figcaption> | ||
</a> | ||
</figure> | ||
); | ||
} | ||
|
||
export default Profile; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
figure.item { | ||
/* To correctly align image, regardless of content height: */ | ||
vertical-align: top; | ||
/* To horizontally center images and caption */ | ||
text-align: center; | ||
/* The width of the container also implies margin around the images. */ | ||
width: 120px; | ||
} | ||
|
||
img { | ||
width: 100px; | ||
border-radius: 50%; | ||
} | ||
|
||
.caption { | ||
/* Make the caption a block so it occupies its own line. */ | ||
padding-top: 10px; | ||
display: block; | ||
text-align: center; | ||
color: #fff; | ||
font-family: var(--font-family); | ||
} |
This file was deleted.
Oops, something went wrong.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,36 @@ | ||
import React from "react"; | ||
import "./volunteers.css"; | ||
|
||
export const Volunteers = () => { | ||
return <div>Volunteers</div>; | ||
}; | ||
import { | ||
v1, | ||
v2, | ||
v3, | ||
v4, | ||
v5, | ||
v6, | ||
v7, | ||
v8, | ||
v9, | ||
v10, | ||
} from "../../assets/profiles/volunteers"; | ||
import { Profile } from "../../components/index"; | ||
export const Volunteers = () => ( | ||
<div id="volunteers"> | ||
<div className="theta_volunteers-heading"> | ||
<h1>Volunteers</h1> | ||
</div> | ||
<div className="theta_volunteers-imgs"> | ||
<Profile name="Kai" img={v1} link="https://devrim.tech" /> | ||
<Profile name="Kai" img={v2} link="https://devrim.tech" /> | ||
<Profile name="Kai" img={v3} link="https://devrim.tech" /> | ||
<Profile name="Kai" img={v4} link="https://devrim.tech" /> | ||
<Profile name="Kai" img={v5} link="https://devrim.tech" /> | ||
<Profile name="Kai" img={v6} link="https://devrim.tech" /> | ||
<Profile name="Kai" img={v7} link="https://devrim.tech" /> | ||
<Profile name="Kai" img={v8} link="https://devrim.tech" /> | ||
<Profile name="Kai" img={v9} link="https://devrim.tech" /> | ||
<Profile name="Kai" img={v10} link="https://devrim.tech" /> | ||
</div> | ||
</div> | ||
); | ||
|
||
export default Volunteers; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#volunteers { | ||
margin-top: 100px; | ||
} | ||
|
||
.theta_volunteers-heading { | ||
justify-content: center; | ||
font-family: var(--font-family); | ||
color: #fff; | ||
text-align: center; | ||
padding-bottom: 50px; | ||
} | ||
|
||
.theta_volunteers-imgs { | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: center; | ||
flex-wrap: wrap; | ||
padding-right: 50px | ||
} | ||
|
||
.theta_volunteers-imgs>* { | ||
padding-left: 50px; | ||
padding-bottom: 50px; | ||
} |