From 046c3133730f6445a400f3307bfbf84b04724e67 Mon Sep 17 00:00:00 2001 From: mauro-balades Date: Mon, 2 Sep 2024 17:27:46 +0200 Subject: [PATCH] feat: Update footer with social media links and improve layout The code changes include: - Adding social media icons for GitHub, Discord, and Mastodon. - Updating the layout of the footer to display the logo and follow us section. - Updating the links in the footer to point to the correct pages. --- src/components/footer.tsx | 112 +++++++++++++++++++++++++++--- src/components/icons/mastodon.tsx | 7 ++ 2 files changed, 110 insertions(+), 9 deletions(-) create mode 100644 src/components/icons/mastodon.tsx diff --git a/src/components/footer.tsx b/src/components/footer.tsx index c020ebf..980c725 100644 --- a/src/components/footer.tsx +++ b/src/components/footer.tsx @@ -1,18 +1,112 @@ + import Link from "next/link"; import Logo from "./logo"; import TextReveal from "./ui/text-reveal"; +import { DiscordLogoIcon, GitHubLogoIcon } from "@radix-ui/react-icons"; +import { MastodonLogo } from "./icons/mastodon"; +import { Button } from "./ui/button"; export default function Footer() { return ( -
- Zen Browser © {new Date().getFullYear()} - Made with ❤️ by the Zen team. - - Source Code - +
+
+
+ +
+

Zen Browser

+

Follow Us

+ +
+
+
+
+

Get Started

+ +
+
+

Get Help

+ +

About

+ +
+
+

Resources

+ +

Support Us

+ +
+
+
+
+

Crafted with ❤️ by the community - Copyright © {new Date().getFullYear()} Zen Browser

+ +
); } diff --git a/src/components/icons/mastodon.tsx b/src/components/icons/mastodon.tsx new file mode 100644 index 0000000..915ba5c --- /dev/null +++ b/src/components/icons/mastodon.tsx @@ -0,0 +1,7 @@ +export const MastodonLogo = (props: any) => ( + + + + + +) \ No newline at end of file