Files
web2.0-frontend/src/pages/kilta/kunnianosoitukset.tsx
T
2021-05-08 00:34:50 +03:00

19 lines
483 B
TypeScript

import React from "react";
import { NextPage } from "next";
import Head from "next/head";
import HonoraryPageView from "@views/HonoraryPage/HonoraryPageView";
import PageWrapper from "@views/common/PageWrapper";
const HonoraryPage: NextPage = () => (
<>
<Head>
<link rel="canonical" href={`${process.env.NEXT_PUBLIC_SITE_URL}/kilta/kunnianosoitukset`} />
</Head>
<PageWrapper>
<HonoraryPageView />
</PageWrapper>
</>
);
export default HonoraryPage;