29 lines
746 B
TypeScript
29 lines
746 B
TypeScript
import React from "react";
|
|
import { TextSection, Link } from "@components/index";
|
|
|
|
const ContactsPageView: React.FC = () => (
|
|
<TextSection>
|
|
<h1>Yhteystiedot</h1>
|
|
<div>
|
|
<h6>Hallitus</h6>
|
|
<p>
|
|
Koko hallitukseen saat yhteyden osoitteesta hallitus@sahkoinsinoorikilta.fi.
|
|
Yksittäisten hallituksen jäsenten yhteystiedot löydät <Link to="/kilta/hallitus">täältä.</Link>
|
|
</p>
|
|
<h6>Postiosoite</h6>
|
|
<p>
|
|
Aalto-yliopisto <br />
|
|
Aalto-yliopiston Sähköinsinöörikilta ry <br />
|
|
PL 15500 <br />
|
|
00076 Aalto
|
|
</p>
|
|
<h6>Rekisteritiedot</h6>
|
|
<p>
|
|
Y-tunnus: 1627010-1
|
|
</p>
|
|
</div>
|
|
</TextSection>
|
|
);
|
|
|
|
export default ContactsPageView;
|