Skip to content

Commit

Permalink
Merge branch 'master' of github.com:piterjs/conf.piterjs.org
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrey Gurylev committed Sep 6, 2019
2 parents 24e19b5 + d19b9a2 commit 6291314
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/ui/promo/promo.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ const PromoStyled = styled.section`
background-size: cover;
background-position: center;
position: relative;
@media (max-width: 576px) {
background: url('/promo_small.jpg');
background-size: cover;
Expand Down Expand Up @@ -92,6 +93,9 @@ const promoQuery = graphql`
dataJson {
event {
date
location {
address
}
}
}
}
Expand All @@ -108,7 +112,7 @@ export const Promo: FC = memo(() => {
<Container>
<ContentStyled>
<DateStyled>
{event.date}, <PlaceStyled>Caнкт-Петербург</PlaceStyled>
{event.date}, <PlaceStyled>Caнкт-Петербург<br/>{event.location.address}</PlaceStyled>
</DateStyled>
<TitleStyled>PiterJS conf &mdash; конференция JavaScript-сообщества с берегов Невы</TitleStyled>
<BigButton
Expand Down

0 comments on commit 6291314

Please sign in to comment.