From 35de666833cacd7c41d147efc8357959c36709a7 Mon Sep 17 00:00:00 2001 From: mauro-balades Date: Wed, 4 Sep 2024 19:58:26 +0200 Subject: [PATCH] feat: Add About page with team information Add a new About page to provide information about the Zen Browser project and the team behind it. This page includes details about the main developer team and other contributors. The About page also displays a list of contributors with their respective GitHub profiles. This change enhances the user experience by providing transparency and recognition to the project contributors. --- src/app/about/page.tsx | 34 ++++++++++++++++++++++++++++++++++ src/components/navigation.tsx | 5 +++++ 2 files changed, 39 insertions(+) create mode 100644 src/app/about/page.tsx diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..83630be --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,34 @@ +"use client"; +import Footer from "@/components/footer"; +import { Navigation } from "@/components/navigation"; +import { releaseNoteIsAlpha, releaseNotes } from "@/lib/release-notes"; +import Link from "next/link"; +import Markdown from 'react-markdown' +import './markdown.css'; + +export default function PrivacyPolicy() { + return ( +
+
+ + {` +# Main Developer Team + +* [**Mauro B.**](https://github.com/mauro-balades): Creator, Main Developer, and a funny guy. +* [**Onno**](https://www.onnno.nl/index.html): logo designer. +* [**Jafeth G.**](https://iamjafeth.com/): Documentation writer. +* [**Peter J.**]: AUR maintainer. +* [**Gunir**](https://github.com/gunir): Active contributor. +* [Oscar G.]: Site Reliability Engineer (SRE). +* [**n7itro**](https://github.com/n7itro): Active contributor. +* [**Canoa**](https://thatcanoa.org/) Active contributor. + +# Many more contributors + +![Contributors](https://contributors-img.web.app/image?repo=zen-browser/www) +`} + +
+
+ ) +} diff --git a/src/components/navigation.tsx b/src/components/navigation.tsx index 849a2cb..2713bf2 100644 --- a/src/components/navigation.tsx +++ b/src/components/navigation.tsx @@ -39,6 +39,11 @@ export const components: { title: string; href: string; description: string }[] href: "/branding-assets", description: "Download our branding assets to use in your projects." }, + { + title: "About", + href: "/about", + description: "Learn more about the Zen Browser project and the team behind it." + }, { title: "Documentation", href: "https://docs.zen-browser.app/",