1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-12-02 05:57:29 +01:00
2020-05-07 09:03:30 +03:00

17 lines
404 B
TypeScript

import React from 'react'
import styles from './Footer.module.css'
import { copyright } from '../../../site.config'
import Markdown from '../atoms/Markdown'
export default function Footer() {
const year = new Date().getFullYear()
return (
<footer className={styles.footer}>
<div className={styles.content}>
© {year} <Markdown text={copyright} />
</div>
</footer>
)
}