Skip to content

Commit e6c6582

Browse files
authored
chore: move Zen Browser guidelines to developers section (#204)
1 parent 542f2ad commit e6c6582

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

content/docs/contribute/contributing.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Contributing
33
description: Contributing to Zen Browser
44
---
55

6-
import { GlobeIcon, BookAIcon, BookIcon } from 'lucide-react'
6+
import { GlobeIcon, BookAIcon, BookIcon, HammerIcon } from 'lucide-react'
77
import { GithubInfo } from 'fumadocs-ui/components/github-info';
88

99
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:
2323
To help you get started with contributing, we have created separate guides for each repository:
2424

2525
<Cards>
26+
<Card title="desktop" icon={<HammerIcon />} description="Getting Started with Zen Browser Development" href="/contribute/desktop" />
2627
<Card title="www" icon={<GlobeIcon />} description="Getting Started with Zen's Homepage Development" href="/contribute/www" />
2728
<Card title="docs" icon={<BookIcon />} description="Getting Started with Documentation Contributions" href="/contribute/docs" />
2829
<Card title="translation" icon={<BookAIcon />} description="Getting Started with Translations" href="/contribute/translation" />

content/docs/guides/building.mdx renamed to content/docs/contribute/desktop.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Building Zen Browser
2+
title: Browser
33
---
44
import { Accordion, Accordions } from 'fumadocs-ui/components/accordion';
55

content/docs/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Welcome to **Zen Browser's Documentation!** Here, you'll find everything you nee
3333
<Card
3434
icon={<Hammer />}
3535
title="Build the Browser"
36-
href="/guides/building"
36+
href="/contribute/desktop"
3737
description="Build the browser from source"
3838
/>
3939
<Card

src/app/guides/building/page.tsx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import Link from 'next/link';
2+
3+
export default function BuildingRedirect() {
4+
return (
5+
<>
6+
<meta httpEquiv="refresh" content="2;url=/contribute/desktop" />
7+
<link rel="canonical" href="/contribute/desktop" />
8+
<p className='m-auto'>Redirecting to <Link href="/contribute/desktop">new documentation location</Link>...</p>
9+
</>
10+
);
11+
}

0 commit comments

Comments
 (0)