created and styled footer

This commit is contained in:
Yusuf Ipek
2021-05-14 12:31:45 +03:00
parent d0b4f59867
commit b2be16bed6
2 changed files with 91 additions and 1 deletions
+47 -1
View File
@@ -1,3 +1,49 @@
export default function Footer() {
return <footer className="footer">Footer</footer>;
return (
<footer className="footer">
<ul className="nav">
<li className="nav__item">
<a href="#" className="nav__link">
Find your dream home
</a>
</li>
<li className="nav__item">
<a href="#" className="nav__link">
Request proposal
</a>
</li>
<li className="nav__item">
<a href="#" className="nav__link">
Download homeplanner
</a>
</li>
<li className="nav__item">
<a href="#" className="nav__link">
Contact us
</a>
</li>
<li className="nav__item">
<a href="#" className="nav__link">
Submit your property
</a>
</li>
<li className="nav__item">
<a href="#" className="nav__link">
Come work with us!
</a>
</li>
</ul>
<p className="copyright">
&copy; Designed by Jonas Schmedtmann and coded by{" "}
<a
href="https://yusufipek.me"
target="_blank"
rel="noreferrer"
className="copyright__link"
>
Yusuf İpek
</a>
</p>
</footer>
);
}