diff --git a/web/gui-v2/src/components/DetailViewWorkforce.jsx b/web/gui-v2/src/components/DetailViewWorkforce.jsx index 1a3679ee..8cc79caa 100644 --- a/web/gui-v2/src/components/DetailViewWorkforce.jsx +++ b/web/gui-v2/src/components/DetailViewWorkforce.jsx @@ -41,7 +41,7 @@ const DetailViewWorkforce = ({ From {yearSpanText}, {data.name} employed about NUMBER Tech Tier 1 workers (#{data.other_metrics.tt1_jobs.rank} rank in PARAT {data.groups.sp500 && <>, #{data.other_metrics.tt1_jobs.sp500_rank} in the S&P500}). - Tech Tier 1 workers include anyone with technical skills and a reasonable probability of working with AI.Read more >> + Tech Tier 1 workers include anyone with technical skills and a reasonable probability of working with AI. Read more >> ), }, diff --git a/web/gui-v2/src/components/ParatUsageDisclaimer.jsx b/web/gui-v2/src/components/ParatUsageDisclaimer.jsx new file mode 100644 index 00000000..32ec2946 --- /dev/null +++ b/web/gui-v2/src/components/ParatUsageDisclaimer.jsx @@ -0,0 +1,29 @@ +import React from 'react'; +import { css } from '@emotion/react'; + +import { ExternalLink } from '@eto/eto-ui-components'; + +const styles = { + wrapper: css` + background-color: white; + font-size: 90%; + margin: auto; + max-width: 800px; + padding: 2rem; + color: var(--grey-light); + + a { + color: var(--grey-light) !important; + } + `, +}; + +const ParatUsageDisclaimer = () => { + return ( +
+ The AI activity metrics in the Private-Sector AI Indicators dataset are derived from data from Revelio Labs, Clarivate Web of Science, and other leading sources. Additional descriptive metadata in PARAT comes from the Crunchbase Open Data Map (powered by Crunchbase) and PermID. For details on our sourcing, methodology, and limitations, see the tool documentation. +
+ ); +}; + +export default ParatUsageDisclaimer; diff --git a/web/gui-v2/src/pages/company/{companiesJson.cset_id}-{companiesJson.name}.jsx b/web/gui-v2/src/pages/company/{companiesJson.cset_id}-{companiesJson.name}.jsx index cf670564..f30db4f6 100644 --- a/web/gui-v2/src/pages/company/{companiesJson.cset_id}-{companiesJson.name}.jsx +++ b/web/gui-v2/src/pages/company/{companiesJson.cset_id}-{companiesJson.name}.jsx @@ -1,9 +1,10 @@ import React from 'react'; import { graphql } from 'gatsby'; -import { AppWrapper, UsageDisclaimer } from '@eto/eto-ui-components'; +import { AppWrapper } from '@eto/eto-ui-components'; import DetailView from '../../components/DetailView'; +import ParatUsageDisclaimer from '../../components/ParatUsageDisclaimer'; import { company_data as allCompanies } from '../../static_data/data'; const CompanyPage = ({ data }) => { @@ -17,9 +18,7 @@ const CompanyPage = ({ data }) => { companyData={companyData} companyId={companyId} /> - + ); }; diff --git a/web/gui-v2/src/pages/index.js b/web/gui-v2/src/pages/index.js index b00a8b3f..bb794c19 100644 --- a/web/gui-v2/src/pages/index.js +++ b/web/gui-v2/src/pages/index.js @@ -5,11 +5,11 @@ import { graphql, useStaticQuery } from 'gatsby'; import { AppWrapper, InfoCard, - UsageDisclaimer, breakpoints, } from '@eto/eto-ui-components'; import ListView from '../components/ListView'; +import ParatUsageDisclaimer from '../components/ParatUsageDisclaimer'; const styles = { introBox: css` @@ -59,9 +59,7 @@ const IndexPage = () => { - + ); }