Added equitypage
This commit is contained in:
@@ -24,6 +24,7 @@ export const renderNavigationItems = (mobile = false): JSX.Element => (
|
||||
<NavbarDropdownLink to="/yhteystiedot" text="Yhteystiedot" exploded={mobile}>
|
||||
{/* <NavbarChildLink to="https://en.wikipedia.org/wiki/Gay">Simo Höglund</NavbarChildLink> */}
|
||||
</NavbarDropdownLink>
|
||||
<NavbarDropdownLink to="/yhdenvertaisuus" text="Yhdenvertaisuus" exploded={mobile} />
|
||||
<NavbarDropdownLink to="/in_english" text="In English" exploded={mobile} />
|
||||
</>
|
||||
);
|
||||
|
||||
@@ -0,0 +1,18 @@
|
||||
import React from "react";
|
||||
import { NextPage } from "next";
|
||||
import Head from "next/head";
|
||||
import ContactsPageView from "@views/EquityPage/EquityPageView";
|
||||
import PageWrapper from "@views/common/PageWrapper";
|
||||
|
||||
const ContactsPage: NextPage = () => (
|
||||
<>
|
||||
<Head>
|
||||
<link rel="canonical" href={`${process.env.NEXT_PUBLIC_SITE_URL}/yhdenvertaisuus`} />
|
||||
</Head>
|
||||
<PageWrapper>
|
||||
<ContactsPageView />
|
||||
</PageWrapper>
|
||||
</>
|
||||
);
|
||||
|
||||
export default ContactsPage;
|
||||
@@ -0,0 +1,18 @@
|
||||
import React from "react";
|
||||
import { TextSection } from "@components/index";
|
||||
|
||||
const EquityPageView: React.FC = () => (
|
||||
<TextSection>
|
||||
<h1>Yhdenvertaisuus</h1>
|
||||
<div>
|
||||
<p>Sähköinsinöörikilta ry on sitoutunut edistämään yhdenvertaisuutta ja tasa-arvoa. Kilta on kaikille avoin ja toivottaa kaikki uudet jäsenet tervetulleiksi toimintaansa. Kilta ei hyväksy minkäänlaista syrjintää, kiusaamista tai häirintää.</p>
|
||||
<p>Yhdenvertaisuusvaltuutettu vastaa yhdenvertaisuuden ja tasa-arvon edistämisestä killassa. Yhdenvertaisuusvastaaviin voi ottaa yhteyttä, jos kokee tulleensa syrjityksi tai kohdelluksi epäasiallisesti killassa.</p>
|
||||
<p>Yhdenvertaisuusvastaavat:</p>
|
||||
<ul>
|
||||
<li>Yhdenvertaisuusvastaavat: <a href="mailto:example@example.com">example@example.com</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</TextSection>
|
||||
);
|
||||
|
||||
export default EquityPageView;
|
||||
Reference in New Issue
Block a user