Skip to content
This repository was archived by the owner on Mar 9, 2021. It is now read-only.

closes #581: Updated space info #582

Merged
merged 3 commits into from
Nov 26, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .all-contributorsrc
Original file line number Diff line number Diff line change
@@ -279,6 +279,15 @@
"contributions": [
"code"
]
},
{
"login": "KirankumarAmbati",
"name": "Kirankumar Ambati",
"avatar_url": "https://avatars1.githubusercontent.com/u/9110567?v=4",
"profile": "https://kirankumarambati.me",
"contributions": [
"code"
]
}
],
"repoType": "github",
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -62,6 +62,9 @@ Thanks goes to these wonderful people ([emoji key](https://github.com/kentcdodds
<td align="center"><a href="https://github.com/VickyAbishek"><img src="https://avatars3.githubusercontent.com/u/9305700?v=4" width="100px;" alt="VickyAbishek"/><br /><sub><b>VickyAbishek</b></sub></a><br /><a href="https://github.com/coderplex/coderplex/commits?author=VickyAbishek" title="Code">💻</a></td>
<td align="center"><a href="http://krushiraj.github.io"><img src="https://avatars0.githubusercontent.com/u/19507241?v=4" width="100px;" alt="Krushi Raj Tula"/><br /><sub><b>Krushi Raj Tula</b></sub></a><br /><a href="https://github.com/coderplex/coderplex/commits?author=krushiraj" title="Code">💻</a></td>
</tr>
<tr>
<td align="center"><a href="https://kirankumarambati.me"><img src="https://avatars1.githubusercontent.com/u/9110567?v=4" width="100px;" alt="Kirankumar Ambati"/><br /><sub><b>Kirankumar Ambati</b></sub></a><br /><a href="https://github.com/coderplex/coderplex/commits?author=KirankumarAmbati" title="Code">💻</a></td>
</tr>
</table>

<!-- markdownlint-enable -->
14 changes: 10 additions & 4 deletions pages/space.js
Original file line number Diff line number Diff line change
@@ -114,7 +114,11 @@ export default () => (
<Title inverted color="#222">
Who Is This For?
</Title>
<ul>{forWhomPoints.map(point => <li key={point}>{point}</li>)}</ul>
<ul>
{forWhomPoints.map(point => (
<li key={point}>{point}</li>
))}
</ul>
</Container>
</ForWhomSection>
<ActivitySection py={[3, 5]} px={[3, 2]}>
@@ -140,10 +144,11 @@ export default () => (
<Title inverted color="#222">
Pricing
</Title>
<SubTitle inverted>₹1000 or More Per Month</SubTitle>
<SubTitle inverted>{`Rs.50 / hour (for < 3 hours)`}</SubTitle>
<SubTitle inverted>{`Rs.30 / hour (for > 3 hours)`}</SubTitle>
<Box pt={[3]} pb={[3]}>
<Button
href="https://docs.google.com/forms/d/e/1FAIpQLSfTV7VcaZuc9a1XH3I2hXNWVr1ILOl8TRNE8Rz7Qc9Pxdca7w/viewform"
href="https://docs.google.com/forms/d/e/1FAIpQLSfZS8hP7nGS0sPOXrr9JaujNkiiuzcGH7zVv_MxLSCtFkxVVA/viewform"
rel="noopener noreferrer"
target="_blank"
inverted
@@ -159,7 +164,8 @@ export default () => (
Location
</Title>
<SubTitle inverted>
<a href="http://www.91springboard.com">91SpringBoard</a>, Kavuri Hills<br />Hyderbad, India
<a href="https://innovationhq.in">InnovationHQ</a>, Banjara Hills, <br />
Hyderbad, India
</SubTitle>
</Container>
<iframe width="1000" height="450" frameBorder="0" src={spaceMapUrl} allowFullScreen />
10 changes: 9 additions & 1 deletion utils/base.styles.js
Original file line number Diff line number Diff line change
@@ -57,7 +57,15 @@ export const Button = styled.a`
color: ${props => (props.inverted ? '#fff' : props.ghost ? purpleSecondary : '#222')};
padding: ${props =>
props.large ? '0.8rem 2.25rem' : props.medium ? '0.6rem 1.2rem' : props.small ? '0.3rem 1.1rem' : '0.2rem 1rem'};
font-size: ${props => (props.large ? '1.8rem' : props.medium ? '1rem' : '0.8rem')};
${breakpoints.lg} {
font-size: 1.8rem;
}
${breakpoints.md} {
font-size: 1rem;
}
${breakpoints.sm} {
font-size: 0.8rem;
}
font-weight: ${props => (props.ghost ? 600 : 500)};
border: ${props => (props.ghost ? `2px solid ${purpleSecondary}` : 'none')};
cursor: pointer;
2 changes: 1 addition & 1 deletion utils/urls.js
Original file line number Diff line number Diff line change
@@ -24,4 +24,4 @@ export const eventsCoverURL =
'https://res.cloudinary.com/coderplex/image/upload/c_scale,w_348/v1510788480/website__assets/events.png';

export const spaceMapUrl =
'https://www.google.com/maps/embed/v1/place?key= AIzaSyBZTOBlstzoENwMkLzldHXXrrTeKDGU7do&q=91springboard,Hyderabad,Telangana';
'https://www.google.com/maps/embed/v1/place?key= AIzaSyBZTOBlstzoENwMkLzldHXXrrTeKDGU7do&q=Innovationhq+Co-Working+Space,Hyderabad,Telangana';