21 lines
564 B
TypeScript
21 lines
564 B
TypeScript
import React from "react";
|
|
import { NextPage, GetStaticProps } from "next";
|
|
import Head from "next/head";
|
|
import ContactsPageView from "@views/ContactsPage/ContactsPageView";
|
|
import PageWrapper from "@views/common/PageWrapper";
|
|
|
|
const ContactsPage: NextPage = () => (
|
|
<>
|
|
<Head>
|
|
<link rel="canonical" href={`${process.env.NEXT_PUBLIC_SITE_URL}/yhteystiedot`} />
|
|
</Head>
|
|
<PageWrapper>
|
|
<ContactsPageView />
|
|
</PageWrapper>
|
|
</>
|
|
);
|
|
|
|
export const getStaticProps: GetStaticProps = async () => ({ props: {} });
|
|
|
|
export default ContactsPage;
|