Merge branch 'master' into 'production'
Master See merge request sahkoinsinoorikilta/vtmk/web2.0-frontend!164
This commit is contained in:
@@ -20,6 +20,7 @@ export const renderNavigationItems = (mobile = false): JSX.Element => (
|
||||
<NavbarChildLink to="https://sik.kuvat.fi">Kuvagalleria</NavbarChildLink>
|
||||
<NavbarChildLink to="/kilta/kilta-avustus">Kilta-avustus</NavbarChildLink>
|
||||
</NavbarDropdownLink>
|
||||
<NavbarDropdownLink to="/fukseille_en" text="For Freshmen" exploded={mobile} />
|
||||
<NavbarDropdownLink to="/opinnot_ja_ura" text="Opinnot ja ura" exploded={mobile} />
|
||||
<NavbarDropdownLink to="/yritysyhteistyo" text="Yritysyhteistyö" exploded={mobile} />
|
||||
<NavbarDropdownLink to="/yhteystiedot" text="Yhteystiedot" exploded={mobile}>
|
||||
|
||||
@@ -0,0 +1,18 @@
|
||||
import React from "react";
|
||||
import { NextPage } from "next";
|
||||
import Head from "next/head";
|
||||
import ContactsPageView from "@views/ForFreshmenPage/ForFreshmenPageView";
|
||||
import PageWrapper from "@views/common/PageWrapper";
|
||||
|
||||
const ContactsPage: NextPage = () => (
|
||||
<>
|
||||
<Head>
|
||||
<link rel="canonical" href={`${process.env.NEXT_PUBLIC_SITE_URL}/ForFreshmen`} />
|
||||
</Head>
|
||||
<PageWrapper>
|
||||
<ContactsPageView />
|
||||
</PageWrapper>
|
||||
</>
|
||||
);
|
||||
|
||||
export default ContactsPage;
|
||||
@@ -0,0 +1,13 @@
|
||||
import React from "react";
|
||||
import { TextSection } from "@components/index";
|
||||
|
||||
const ForFreshmenPageView: React.FC = () => (
|
||||
<TextSection>
|
||||
<h1>Hello!</h1>
|
||||
<div>
|
||||
<p>Hi there! This site is under construction and will be updated during the summer!</p>
|
||||
</div>
|
||||
</TextSection>
|
||||
);
|
||||
|
||||
export default ForFreshmenPageView;
|
||||
@@ -13,6 +13,19 @@ const MembershipPageHero: React.FC = () => (
|
||||
Jäseneksi haluavien tulee täyttää jäsenhakemus ja maksaa jäsenmaksu.
|
||||
Linkin jäsenhakemukseen löydät vierestä ja maksutiedot alempaa tältä sivulta."
|
||||
/>
|
||||
|
||||
<HeroAside bgColor="lightTurquoise">
|
||||
<HeroAsideItem
|
||||
header="Täytä jäsenhakemus"
|
||||
link="https://api.sahkoinsinoorikilta.fi/members/application"
|
||||
linkText="Hakemuslomake ›"
|
||||
/>
|
||||
<HeroAsideItem
|
||||
header="Maksa jäsenmaksu"
|
||||
link="#jasenmaksu"
|
||||
linkText="Maksutiedot ›"
|
||||
/>
|
||||
</HeroAside>
|
||||
</Hero>
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user