import React from 'react' import dynamic from 'next/dynamic' import { title, description, learnMore } from '../../site.config' import Layout from '../Layout' import styles from './index.module.css' import Logo from '@oceanprotocol/art/logo/logo-white.svg' const Add = dynamic(() => import('../components/Add')) const Info = dynamic(() => import('../components/Info.mdx')) const Home = () => (

{title}

{description}

Learn More →
) export default Home