Added mobile support

This commit is contained in:
Mauro Balades
2024-07-12 00:22:11 +02:00
parent 68ff4a7308
commit d9ff1a48b4
9 changed files with 373 additions and 10 deletions

View File

@@ -3,10 +3,10 @@ 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">
<div className="font-medium flex-col md:flex-row px-10 md:px-0 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>
<a className="mt-5 md:mt-0 md:ml-2 font-bold" href="https://github.com/zen-browser" target="_blank">Source Code</a>
</div>
);
}