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.
This commit is contained in:
mauro-balades
2024-09-04 19:58:26 +02:00
parent 06f0dfa945
commit 35de666833
2 changed files with 39 additions and 0 deletions

34
src/app/about/page.tsx Normal file
View File

@@ -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 className="flex min-h-screen flex-col items-center justify-start">
<div id="policy" className="min-h-screen py-42 flex mx-auto my-52 p-10 lg:p-0 w-full lg:w-1/3 flex-col">
<Markdown>
{`
# 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)
`}
</Markdown>
</div>
</main>
)
}

View File

@@ -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/",