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