Files
web2.0-frontend/src/pages/yhteystiedot.tsx
T
2021-04-01 18:48:04 +03:00

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;