This commit is contained in:
Philly Cai 2025-06-28 21:00:42 +00:00 committed by GitHub
commit 550310a07d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 15 additions and 3 deletions

View file

@ -3,7 +3,7 @@ title: Contributing
description: Contributing to Zen Browser
---
import { GlobeIcon, BookAIcon, BookIcon } from 'lucide-react'
import { GlobeIcon, BookAIcon, BookIcon, HammerIcon } from 'lucide-react'
import { GithubInfo } from 'fumadocs-ui/components/github-info';
Thank you for considering contributing to Zen Browser! We appreciate your time and effort in improving this project. The following is a set of guidelines for contributing to Zen Browser. These guidelines are intended to make it easier for you to get involved.
@ -23,6 +23,7 @@ We welcome a wide range of contributions, including but not limited to:
To help you get started with contributing, we have created separate guides for each repository:
<Cards>
<Card title="desktop" icon={<HammerIcon />} description="Getting Started with Zen Browser Development" href="/contribute/desktop" />
<Card title="www" icon={<GlobeIcon />} description="Getting Started with Zen's Homepage Development" href="/contribute/www" />
<Card title="docs" icon={<BookIcon />} description="Getting Started with Documentation Contributions" href="/contribute/docs" />
<Card title="translation" icon={<BookAIcon />} description="Getting Started with Translations" href="/contribute/translation" />

View file

@ -1,5 +1,5 @@
---
title: Building Zen Browser
title: Browser
---
import { Accordion, Accordions } from 'fumadocs-ui/components/accordion';

View file

@ -33,7 +33,7 @@ Welcome to **Zen Browser's Documentation!** Here, you'll find everything you nee
<Card
icon={<Hammer />}
title="Build the Browser"
href="/guides/building"
href="/contribute/desktop"
description="Build the browser from source"
/>
<Card

View file

@ -0,0 +1,11 @@
import Link from 'next/link';
export default function BuildingRedirect() {
return (
<>
<meta httpEquiv="refresh" content="2;url=/contribute/desktop" />
<link rel="canonical" href="/contribute/desktop" />
<p className='m-auto'>Redirecting to <Link href="/contribute/desktop">new documentation location</Link>...</p>
</>
);
}