mirror of
https://github.com/yusufipk/teknolojirehberleri.xyz.git
synced 2026-09-11 10:56:08 +00:00
create(footer) created footer
This commit is contained in:
@@ -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;
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user