106 lines
2.3 KiB
TypeScript
106 lines
2.3 KiB
TypeScript
import React from "react";
|
|
import styled from "styled-components";
|
|
import Anchor from "../Anchor";
|
|
import colors from "@theme/colors";
|
|
import breakpoints from "@theme/breakpoints";
|
|
|
|
const Content = styled.div`
|
|
display: flex;
|
|
|
|
& > div:first-of-type {
|
|
padding: 48px 0;
|
|
flex: 2 1;
|
|
|
|
& > * {
|
|
padding: 0 24px;
|
|
}
|
|
}
|
|
|
|
h4 {
|
|
color: ${colors.lightBlue};
|
|
padding: 24px 0;
|
|
}
|
|
|
|
a {
|
|
color: ${colors.white};
|
|
display: block;
|
|
text-decoration: underline;
|
|
padding: 0.4rem 0;
|
|
font-size: 0.8rem;
|
|
|
|
&:hover {
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
|
|
p {
|
|
color: ${colors.white};
|
|
margin: 0;
|
|
padding: 0.4rem 0;
|
|
font-size: 0.8rem;
|
|
}
|
|
`;
|
|
|
|
const MarginSpace = styled.div`
|
|
max-width: 67%;
|
|
margin: auto;
|
|
`;
|
|
|
|
const Columns = styled.div`
|
|
display: flex;
|
|
justify-content: space-between;
|
|
& > div > div {
|
|
margin-bottom: 1rem;
|
|
}
|
|
`;
|
|
|
|
const Map = styled.div`
|
|
flex: 1;
|
|
@media screen and (max-width: ${breakpoints.mobile}) {
|
|
display: none;
|
|
}
|
|
iframe {
|
|
border: none;
|
|
}
|
|
`;
|
|
|
|
const FooterContent: React.FC = () => (
|
|
<Content>
|
|
<div>
|
|
<MarginSpace>
|
|
<h4>Aalto-yliopiston Sähköinsinöörikilta ry</h4>
|
|
<Columns>
|
|
<div>
|
|
<div>
|
|
<p>TUAS-Talo</p>
|
|
<p>Maarintie 8</p>
|
|
<p>PL 15500, 00076 Aalto</p>
|
|
</div>
|
|
<div>
|
|
<p>Y-tunnus: 1627010-1</p>
|
|
<p>sik-hallitus@list.ayy.fi</p>
|
|
<Anchor to="/yhteystiedot">Yhteystiedot</Anchor>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<Anchor to="/jaseneksi">Jäseneksi</Anchor>
|
|
<Anchor to="/palaute">Palaute</Anchor>
|
|
<Anchor to="https://static.sika.sik.party">Arkisto</Anchor>
|
|
<Anchor to="https://static.sika.sik.party">Materiaalipankki</Anchor>
|
|
</div>
|
|
</Columns>
|
|
</MarginSpace>
|
|
</div>
|
|
|
|
<Map>
|
|
<iframe
|
|
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d1983.6122518000927!2d24.81667815176689!3d60.187150048900186!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x468df5eb3cb4ecf1%3A0x3480cbfeedcc07b6!2sMaarintie+8%2C+02150+Espoo!5e0!3m2!1sfi!2sfi!4v1542413548247"
|
|
width="100%"
|
|
height="100%"
|
|
/>
|
|
</Map>
|
|
</Content>
|
|
)
|
|
|
|
export default FooterContent;
|