Dark mode done

This commit is contained in:
2021-10-02 15:49:23 -03:00
parent fdbd8a1be6
commit e4f3bccd8c
33 changed files with 604 additions and 80 deletions

View File

@@ -1,8 +1,8 @@
import React from 'react'
const Footer = () => {
const Footer = (props) => {
return (
<footer className="made-with-love">
<footer className={props.darkMode ? 'made-with-love dark-mode-component' : 'made-with-love'}>
Made with 💓 by <a href="http://www.franp.xyz">Francisco Pessano</a>
</footer>
)