onedrive / src /components /Footer.tsx
ImPekaaboo
first commit
5db682b
raw
history blame contribute delete
No virus
391 Bytes
import config from '../../config/site.config'
const createFooterMarkup = () => {
return {
__html: config.footer,
}
}
const Footer = () => {
return (
<div
className="w-full border-t border-gray-900/10 p-4 text-center text-xs font-medium text-gray-400 dark:border-gray-500/30"
dangerouslySetInnerHTML={createFooterMarkup()}
></div>
)
}
export default Footer