2021-07-02 14:09:07 +00:00
|
|
|
import config from '../config/site.json'
|
|
|
|
|
|
|
|
const createFooterMarkup = () => {
|
|
|
|
return {
|
|
|
|
__html: config.footer,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-22 13:55:53 +00:00
|
|
|
const Footer = () => {
|
2021-07-02 14:09:07 +00:00
|
|
|
return <div className="p-4 text-sm text-gray-400" dangerouslySetInnerHTML={createFooterMarkup()}></div>
|
2021-06-22 13:55:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export default Footer
|