initial commit

This commit is contained in:
Aidan 2025-01-05 14:33:52 -05:00
parent 60ed5888fa
commit 77990f0708
23 changed files with 483 additions and 121 deletions

14
app/components/Footer.tsx Normal file
View file

@ -0,0 +1,14 @@
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
import { faGithub } from '@fortawesome/free-brands-svg-icons'
export default function Footer() {
return (
<footer className="bg-gray-800 py-6">
<div className="container mx-auto px-4 text-center">
<a href="https://github.com/ihatenodejs/aidxnCC" target="_blank" rel="noopener noreferrer" className="text-gray-400 hover:text-white transition-colors">
<FontAwesomeIcon icon={faGithub} className="text-md mr-1" /> This website is free, open source and in the public domain.
</a>
</div>
</footer>
)
}