Vizzuality/landgriffon

View on GitHub
marketing/src/pages/privacy-policy.tsx

Summary

Maintainability
C
1 day
Test Coverage
import Head from 'next/head';

import ApplicationLayout from 'layouts/application';

import PrivacyPolicy from 'containers/privacy-policy';

import type { NextPage } from 'next';

type PageProps = { domain: string | null };

const PrivacyPolicyPage: NextPage<PageProps> = () => {
  return (
    <ApplicationLayout>
      <>
        <Head>
          <title>Privacy Police | LandGriffon</title>
          <link rel="icon" href="/favicon.ico" />
          <meta name="viewport" content="width=device-width" />

          <meta
            name="description"
            content="On this page you will find the Privacy Policy, Cookie Policy, and Legal Notice that applies to the LandGriffon Consortium."
          />

          <meta
            name="og:title"
            content="Sustainable Supply Chain Solutions: Made Straightforward."
          />

          <meta
            name="og:description"
            content="LandGriffon helps companies strategize the sustainable transformation of their supply chains by using technology, data and scientific-based analysis to manage environmental impacts."
          />
          <meta name="og:type" content="website" />
          <meta name="og:url" content="https://landgriffon.com/privacy-policy" />
          <meta name="og:image" content="https://landgriffon.com/images/og/OG-LandGriffon.png" />
        </Head>

        <PrivacyPolicy />
      </>
    </ApplicationLayout>
  );
};

export default PrivacyPolicyPage;