create(footer) created footer

This commit is contained in:
Yusuf İpek
2021-07-27 15:52:27 +03:00
parent 3399ece396
commit 55f7b9e9fb
7 changed files with 63 additions and 1 deletions
+23
View File
@@ -0,0 +1,23 @@
function Footer() {
return (
<div className="footer">
<div className="footer_text">
<p className="footer_text-main">
Sitedeki bütün içerikler kamu malıdır.
</p>
<p className="footer_text-secondary">
Esinlenilen website{" "}
<a
href="https://based.cooking"
target="_blank"
rel="noopener noreferrer"
>
based.cooking
</a>
</p>
</div>
</div>
);
}
export default Footer;
+2
View File
@@ -1,10 +1,12 @@
import Navbar from "./navbar";
import Footer from "./footer";
function Layout({ children }) {
return (
<div className="container">
<Navbar />
<div className="children">{children}</div>
<Footer />
</div>
);
}