Damn, I like this website!

This commit is contained in:
Mauro Balades
2024-07-03 17:03:11 +02:00
parent ef3e94cb8d
commit 2ab3801100
31 changed files with 8838 additions and 54 deletions

12
src/components/footer.tsx Normal file
View File

@@ -0,0 +1,12 @@
import Logo from "./logo";
import TextReveal from "./ui/text-reveal";
export default function Footer() {
return (
<div className="font-medium border-t w-full border-grey py-10 mt-10 flex justify-center align-center">
Zen Browser © {new Date().getFullYear()} -
Made with by the Zen team.
<a className="ml-2 font-bold" href="https://github.com/zen-browser" target="_blank">Source Code</a>
</div>
);
}