Files
teknolojirehberleri.xyz/components/footer.js
T
2021-08-20 17:56:09 +03:00

30 lines
673 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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">
<a
href="https://teknolojirehberleri.xyz/rss"
target="_blank"
rel="noopener noreferrer"
>
RSS
</a>{" "}
<a
href="https://based.cooking"
target="_blank"
rel="noopener noreferrer"
>
based.cooking
</a>
</p>
</div>
</div>
);
}
export default Footer;