Footer made with love done

This commit is contained in:
2021-10-02 09:48:00 -03:00
parent f4f95bffec
commit 756ab5cd03
6 changed files with 42 additions and 1 deletions

View File

@@ -21,6 +21,8 @@ import Account from "./components/Account";
import ClockifyTasksDisplay from './components/ClockifyTasksDisplay';
import Credits from './components/Credits';
import Footer from './components/Footer';
function App() {
const [timerOn, setTimerOn] = useState(false)
@@ -111,6 +113,7 @@ function App() {
direction={'credits'}
/>
<Credits />
<Footer />
</Route>
</Switch>
</>

11
src/components/Footer.jsx Normal file
View File

@@ -0,0 +1,11 @@
import React from 'react'
const Footer = () => {
return (
<footer className="made-with-love">
Made with 💓 by <a href="http://www.franp.xyz">Francisco Pessano</a>
</footer>
)
}
export default Footer