diff --git a/content/docs/contribute/docs/index.mdx b/content/docs/contribute/docs/index.mdx
index a1cc231..e4d730a 100644
--- a/content/docs/contribute/docs/index.mdx
+++ b/content/docs/contribute/docs/index.mdx
@@ -118,7 +118,7 @@ Your pull request will be reviewed by the maintainers, and you may be asked to m
- [Zen Browser Documentation Repository](https://github.com/zen-browser/docs)
- [Fumadocs Documentation](https://fumadocs.vercel.app/docs/ui)
-- [Contribution Guidelines](/contribute/contributing)
+- [Contribution Guidelines](/contribute)
- [Code of Conduct](/contribute/code-of-conduct)
- [Editing with VS Code](/contribute/docs/editing-with-vscode)
diff --git a/content/docs/contribute/contributing.mdx b/content/docs/contribute/index.mdx
similarity index 100%
rename from content/docs/contribute/contributing.mdx
rename to content/docs/contribute/index.mdx
diff --git a/content/docs/contribute/meta.json b/content/docs/contribute/meta.json
index c3fd1b4..2babc5c 100644
--- a/content/docs/contribute/meta.json
+++ b/content/docs/contribute/meta.json
@@ -2,7 +2,6 @@
"title": "Contribute",
"icon": "GitMerge",
"pages": [
- "contributing",
"..."
]
}
\ No newline at end of file
diff --git a/content/docs/contribute/translation.mdx b/content/docs/contribute/translation.mdx
index 6e0ba7e..fd52fa2 100644
--- a/content/docs/contribute/translation.mdx
+++ b/content/docs/contribute/translation.mdx
@@ -57,7 +57,7 @@ Crowdin allows you to track the progress of the translation project and stay upd
- [Zen Browser Translation Project on Crowdin](https://crowdin.com/project/zen-browser)
- [Crowdin Documentation](https://support.crowdin.com/)
-- [Contribution Guidelines](/contribute/contributing)
+- [Contribution Guidelines](/contribute)
- [Code of Conduct](/contribute/code-of-conduct)
---
diff --git a/content/docs/contribute/www.mdx b/content/docs/contribute/www.mdx
index 1197913..07fea92 100644
--- a/content/docs/contribute/www.mdx
+++ b/content/docs/contribute/www.mdx
@@ -108,7 +108,7 @@ Your pull request will be reviewed by the maintainers, and you may be asked to m
## Additional Resources
- [Zen Browser Homepage Repository](https://github.com/zen-browser/www)
-- [Contribution Guidelines](/contribute/contributing)
+- [Contribution Guidelines](/contribute)
- [Code of Conduct](/contribute/code-of-conduct)
---
diff --git a/content/docs/index.mdx b/content/docs/index.mdx
index bff9609..ff4f199 100644
--- a/content/docs/index.mdx
+++ b/content/docs/index.mdx
@@ -63,7 +63,7 @@ Welcome to **Zen Browser's Documentation!** Here, you'll find everything you nee
Redirecting to new documentation location...
- > - ); -} diff --git a/src/components/Redirect.tsx b/src/components/Redirect.tsx new file mode 100644 index 0000000..300baf7 --- /dev/null +++ b/src/components/Redirect.tsx @@ -0,0 +1,19 @@ +import Link from "next/link"; + +interface RedirectProps { + to: string; + message?: string; +} + +export default function Redirect({ to, message }: RedirectProps) { + return ( + <> + + ++ {message || "Redirecting to"}{" "} + new documentation location... +
+ > + ); +}