Files
web2.0-frontend/src/pages/yhteystiedot.tsx
T
Johannes Viirimäki 0373e07d45 Update yhteystiedot.tsx
2024-09-23 12:46:17 +00:00

19 lines
478 B
TypeScript

import React from "react";
import { NextPage } 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}/kilta/yhteystiedot`} />
</Head>
<PageWrapper>
<ContactsPageView />
</PageWrapper>
</>
);
export default ContactsPage;