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