diff --git a/src/components/Navigation.tsx b/src/components/Navigation.tsx index cfb1925..3cfedc7 100644 --- a/src/components/Navigation.tsx +++ b/src/components/Navigation.tsx @@ -11,6 +11,7 @@ export const renderNavigationItems = (mobile = false): JSX.Element => ( Toiminta Fuksi + Vuokraa kalustoa Kunnianosoitukset Dokumenttiarkisto Kuvagalleria diff --git a/src/pages/kilta/vuokraa.tsx b/src/pages/kilta/vuokraa.tsx new file mode 100644 index 0000000..5afa831 --- /dev/null +++ b/src/pages/kilta/vuokraa.tsx @@ -0,0 +1,18 @@ +import React from "react"; +import { NextPage } from "next"; +import Head from "next/head"; +import RentPageView from "@views/RentPage/RentPageView"; +import PageWrapper from "@views/common/PageWrapper"; + +const RentPage: NextPage = () => ( + <> + + + + + + + +); + +export default RentPage; diff --git a/src/views/RentPage/RentPageView.tsx b/src/views/RentPage/RentPageView.tsx new file mode 100644 index 0000000..534de61 --- /dev/null +++ b/src/views/RentPage/RentPageView.tsx @@ -0,0 +1,32 @@ +import React from "react"; +import { TextSection, Link } from "@components/index"; + +const RentPageView: React.FC = () => ( + +

Vuokraa tavaroita

+
+

Kilta vuokraa erilaisia laittteita ja varusteita korvausta vastaan. Alla luettelo ja hinnasto vuokrattavista tavaroista:

+
    +
  • Mökämasiina kuva 50€
  • +
  • SIK-Teltta kuva 50 €/päivä
  • +
  • Gongi ilmainen
  • +
  • 80 kpl kevytpeitteet
  • +
      +
    • Alle 5 kpl ilmainen
    • +
    • 5 - 50 kpl tapauskohtaisesti
    • +
    • Yli 50 kpl 50€
    • +
    +
  • 6 kpl valokannut (Showtec Compact PAR 7 Tri) kuva
  • +
      +
    • 1 kpl 10€/päivä
    • +
    • 6 kpl 50€/päivä
    • +
    +
+

Tiedustelut ja varaukset osoitteesta hallitus@sahkoinsinoorikilta.fi

+

Varauskalenteri:

+ +
+
+); + +export default RentPageView;