Skip to content
This repository was archived by the owner on Aug 4, 2023. It is now read-only.

Commit ef23bc2

Browse files
Add files via upload
1 parent ab67d64 commit ef23bc2

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

src/Components/footer.js

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
import React from "react";
2+
const openInNewTab = url => {
3+
window.open(url, '_blank', 'noopener,noreferrer')
4+
}
5+
function Footer(){
6+
return(
7+
<div className="footer">
8+
<div className="footer-content">
9+
<div className="footer-icons">
10+
<i class="fa-brands fa-telegram"></i>
11+
<i class="fa-brands fa-discord" onClick={() => openInNewTab("https://discord.gg/rap6A2TYds")}></i>
12+
<i class="fa-brands fa-github" onClick={() => openInNewTab("https://github.com/ShivaBhattacharjee/betaanime.git")}></i>
13+
</div>
14+
<h3>Anime <span>Trix</span></h3>
15+
<p>AnimeTrix is not affiliated with or endorsed by any of the anime studios behind the creation of the anime presented on this site. This website is only an user interface presenting/linking various self-hosted files across the internet by other third-party providers for easy access . AnimeTrix never downloads the video from any source provider, link will be returned from the response hence it is completely not subjected to DMCA compliant</p>
16+
</div>
17+
</div>
18+
)
19+
}
20+
export default Footer;

0 commit comments

Comments
 (0)