chore: add docs to nav (#1235)

---
name: Pull Request
about: Submit changes to the project for review and inclusion
---

## Description

<!--- Describe the changes introduced by this pull request. -->
<!--- Explain what problem it solves or what feature/fix it adds. -->

## Related Issue

<!--- If this pull request is related to a specific issue, reference it
here using #issue_number. -->
<!--- For example, "Fixes #123" or "Addresses #456". -->

## Changes Made

<!--- Provide a summary of the changes made in this pull request. -->
<!--- Include any relevant technical details or architecture changes.
-->

- Change 1
- Change 2
- ...

## Testing Performed

<!--- Describe the testing that you have performed to validate these
changes. -->
<!--- Include information about test cases, testing environments, and
results. -->

- Tested feature X in scenario Y.
- Ran unit tests for component Z.
- Tested on browsers A, B, and C.
- ...

## Checklist

<!--- Please check the boxes that apply to this pull request. -->
<!--- You can add or remove items as needed. -->

- [ ] I have tested these changes locally and they work as expected.
- [ ] I have added/updated tests that prove the effectiveness of these
changes.
- [ ] I have updated the documentation to reflect these changes, if
applicable.
- [ ] I have followed the project's coding style guidelines.
- [ ] I have addressed the code review feedback from the previous
submission, if applicable.

## Additional Notes

<!--- Provide any additional context or notes for the reviewers. -->
<!--- This might include details about design decisions, potential
concerns, or anything else relevant. -->
This commit is contained in:
Timur Ercan
2024-07-22 17:14:09 +02:00
committed by GitHub
parent f26449c6bf
commit e8c325c683
2 changed files with 20 additions and 8 deletions

View File

@ -54,6 +54,14 @@ export const Header = ({ className, ...props }: HeaderProps) => {
Pricing
</Link>
<Link
href="https://documen.so/docs-header"
className="text-muted-foreground hover:text-muted-foreground/80 text-sm font-semibold"
target="_blank"
>
Documentation
</Link>
<Link
href="/blog"
className="text-muted-foreground hover:text-muted-foreground/80 text-sm font-semibold"

View File

@ -17,6 +17,14 @@ export type MobileNavigationProps = {
};
export const MENU_NAVIGATION_LINKS = [
{
href: '/pricing',
text: 'Pricing',
},
{
href: 'https://documen.so/docs-nav',
text: 'Documentation',
},
{
href: '/singleplayer',
text: 'Singleplayer',
@ -25,10 +33,6 @@ export const MENU_NAVIGATION_LINKS = [
href: '/blog',
text: 'Blog',
},
{
href: '/pricing',
text: 'Pricing',
},
{
href: '/open',
text: 'Open Startup',
@ -46,14 +50,14 @@ export const MENU_NAVIGATION_LINKS = [
href: '/privacy',
text: 'Privacy',
},
{
href: 'https://app.documenso.com/signin?utm_source=marketing-header',
text: 'Sign in',
},
{
href: 'https://app.documenso.com/signup?utm_source=marketing-header',
text: 'Sign up',
},
{
href: 'https://app.documenso.com/signin?utm_source=marketing-header',
text: 'Sign in',
},
];
export const MobileNavigation = ({ isMenuOpen, onMenuOpenChange }: MobileNavigationProps) => {