19 lines
483 B
TypeScript
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;
|