diff --git a/components/Footer.js b/components/Footer.js index 402fd90..54f9857 100644 --- a/components/Footer.js +++ b/components/Footer.js @@ -67,6 +67,12 @@ export default function Footer() { Lending + + Compare + + + About +
diff --git a/pages/about.js b/pages/about.js new file mode 100644 index 0000000..cefd5b7 --- /dev/null +++ b/pages/about.js @@ -0,0 +1,189 @@ +import Head from 'next/head' +import Link from 'next/link' + +import Footer from '@components/Footer' + +const organizationSchema = { + '@context': 'https://schema.org', + '@type': 'Organization', + name: 'MLDSAI Inc.', + alternateName: ['OpenAdapt.AI', 'OpenAdapt'], + url: 'https://openadapt.ai', + logo: { + '@type': 'ImageObject', + url: 'https://openadapt.ai/android-chrome-512x512.png', + width: 512, + height: 512, + }, + description: + 'MLDSAI Inc. builds OpenAdapt, an open-source demonstration compiler for desktop automation: record a workflow once and it compiles into a deterministic, self-healing script that runs on your own machines.', + foundingDate: '2023', + address: { + '@type': 'PostalAddress', + addressLocality: 'Toronto', + addressRegion: 'ON', + addressCountry: 'CA', + }, + email: 'hello@openadapt.ai', + founder: { + '@type': 'Person', + name: 'Richard Abrich', + url: 'https://github.com/abrichr', + }, + sameAs: [ + 'https://github.com/OpenAdaptAI', + 'https://www.linkedin.com/company/openadapt-ai', + 'https://x.com/OpenAdaptAI', + 'https://discord.gg/yF527cQbDG', + 'https://pypi.org/project/openadapt/', + ], +} + +const personSchema = { + '@context': 'https://schema.org', + '@type': 'Person', + name: 'Richard Abrich', + jobTitle: 'Founder', + worksFor: { + '@type': 'Organization', + name: 'MLDSAI Inc.', + url: 'https://openadapt.ai', + }, + sameAs: ['https://github.com/abrichr'], +} + +export default function AboutPage() { + return ( +
+ + About OpenAdapt | MLDSAI Inc. + + + + + +