mirror of
https://github.com/FranP-code/Pomodoro-Timer-with-Clockify-integration.git
synced 2025-10-12 23:52:30 +00:00
Footer made with love done
This commit is contained in:
@@ -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
11
src/components/Footer.jsx
Normal 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
|
||||
Reference in New Issue
Block a user