dedsecpiratehacker141's picture
Make an anti pedo bot that auto finds bad domains and gets all the information off them and can put in domains to check
d98bbe5 verified
class CustomFooter extends HTMLElement {
connectedCallback() {
this.attachShadow({ mode: 'open' });
this.shadowRoot.innerHTML = `
<style>
footer {
background-color: rgba(17, 24, 39, 0.9);
backdrop-filter: blur(8px);
}
.footer-link:hover {
color: #f87171;
}
</style>
<footer class="border-t border-gray-800 py-8 px-4">
<div class="container mx-auto">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<h3 class="text-lg font-semibold mb-4 flex items-center gap-2">
<i data-feather="shield" class="text-red-500"></i>
PedaSleuth 3000
</h3>
<p class="text-gray-400 text-sm">Advanced domain scanning tool to help protect the vulnerable.</p>
</div>
<div>
<h4 class="font-semibold mb-4">Quick Links</h4>
<ul class="space-y-2">
<li><a href="#" class="footer-link text-gray-400 hover:text-white">Scanner</a></li>
<li><a href="#" class="footer-link text-gray-400 hover:text-white">Resources</a></li>
<li><a href="#" class="footer-link text-gray-400 hover:text-white">About</a></li>
<li><a href="#" class="footer-link text-gray-400 hover:text-white">Report</a></li>
</ul>
</div>
<div>
<h4 class="font-semibold mb-4">Resources</h4>
<ul class="space-y-2">
<li><a href="https://report.cybertip.org/" target="_blank" class="footer-link text-gray-400 hover:text-white">CyberTipline</a></li>
<li><a href="https://www.missingkids.org/" target="_blank" class="footer-link text-gray-400 hover:text-white">NCMEC</a></li>
<li><a href="https://www.ic3.gov/" target="_blank" class="footer-link text-gray-400 hover:text-white">IC3</a></li>
<li><a href="https://www.interpol.int/" target="_blank" class="footer-link text-gray-400 hover:text-white">INTERPOL</a></li>
</ul>
</div>
<div>
<h4 class="font-semibold mb-4">Contact</h4>
<ul class="space-y-2">
<li class="flex items-center gap-2 text-gray-400">
<i data-feather="mail"></i>
<span>contact@pedasleuth.org</span>
</li>
<li class="flex items-center gap-2 text-gray-400">
<i data-feather="twitter"></i>
<span>@PedaSleuth</span>
</li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-500 text-sm">
<p>© ${new Date().getFullYear()} PedaSleuth 3000. All rights reserved.</p>
<p class="mt-2">For research and protective purposes only.</p>
</div>
</div>
</footer>
`;
}
}
customElements.define('custom-footer', CustomFooter);