Vizzuality/landgriffon

View on GitHub
marketing/src/pages/compliance.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import Head from 'next/head';

import ApplicationLayout from 'layouts/application';

import Compliance from 'containers/compliance';

import type { NextPage } from 'next';

type PageProps = { domain: string | null };

const CompliancePage: NextPage<PageProps> = () => {
  return (
    <ApplicationLayout>
      <>
        <Head>
          {/* To - DO - check the specific title for compliance page */}
          <title>How We Analyze Supply Chain Impacts For Sustainabilty | LandGriffon</title>
          <link rel="icon" href="/favicon.ico" />
          <meta name="viewport" content="width=device-width" />
          <meta
            name="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:title" content="Sustainable Supply Chain Solutions: How It Works." />

          <meta
            name="og:description"
            content="LandGriffon uses a unique methodology and world-renowned datasets to analyze supply chain impacts. Our open-source and open-science software ensures total transparency to align companies with nature standards and ESG regulations, such as SBTN and TNFD guidance."
          />
          <meta name="og:type" content="website" />
          <meta name="og:url" content="https://landgriffon.com/methodology" />
          <meta name="og:image" content="https://landgriffon.com/images/og/OG-LandGriffon.png" />
        </Head>

        <Compliance />
      </>
    </ApplicationLayout>
  );
};

export default CompliancePage;