import React from 'react' import Link from 'next/link' import shortid from 'shortid' import Layout from '../../Layout' import Button from '../atoms/Button' import SearchBar from '../molecules/SearchBar' import { title, description } from '../../../site.config' import Explore from '../../images/explore.svg' import Publish from '../../images/publish.svg' import DataPool from '../../images/datapool.svg' import styles from './Home.module.css' const actions = [ { title: 'Explore Data Sets', text: 'Browse and consume a wide range of logistics data.', link: '/explore', action: 'Explore Now', icon: }, { title: 'Monetize Your Data', text: 'Publish and monetize on your data to open up new revenue streams.', link: '/publish', action: 'Publish Data', icon: , primary: true }, { title: 'Data Pool', text: 'Create or join data pools to generate more revenue.', link: '/', action: 'Coming Soon', icon: , comingSoon: true } ] const HomePage = () => { return (

{title}

{description}

{actions.map(action => ( {action.icon}

{action.title}

{action.text}

))}
) } export default HomePage