Header and BannerLogin done

This commit is contained in:
2021-09-18 02:44:22 -03:00
parent f284189ae6
commit 163f7cc905
18 changed files with 550 additions and 80 deletions

12
src/components/Header.jsx Normal file
View File

@@ -0,0 +1,12 @@
import React from 'react'
const Header = () => {
return (
<header className="header-main-page">
<h1>Pomodoro Timer</h1>
<h3>Made By <span className="selectable"><a target="_blank" href="https://www.behance.net/franpessano" rel="noreferrer">Francisco Pessano</a></span></h3>
</header>
)
}
export default Header