Meroar's picture
Make an app that calculates that allows the user to upload a bunch of files, and then analyzes all of those files content and compares them to each other and create unique indentifier tags for each identical largest common similarity among all files and makes a key that states how big the lcs's are (next to the icon or letter ) for example:
257af98 verified
class CustomFooter extends HTMLElement {
connectedCallback() {
this.attachShadow({ mode: 'open' });
this.shadowRoot.innerHTML = `
<style>
:host {
display: block;
width: 100%;
}
footer {
background: linear-gradient(135deg, #155e75 0%, #164e63 100%);
}
</style>
<footer class="text-white py-8 mt-12">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="flex items-center space-x-2 mb-4 md:mb-0">
<i data-feather="code" class="w-6 h-6"></i>
<p class="text-sm">&copy; 2024 CodeFingerprint Detective. Uncover the patterns in your code.</p>
</div>
<div class="flex space-x-4">
<a href="#" class="text-cyan-200 hover:text-white transition-colors duration-300">
<i data-feather="github" class="w-5 h-5"></i>
</div>
</div>
</footer>
`;
}
}
customElements.define('custom-footer', CustomFooter);