Skip to content

Commit

Permalink
Fix: Inconsistent Navigation Buttons and Sidebar Order in Documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
thecoderwithHat committed Jan 13, 2025
1 parent 4fe7488 commit 621c787
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pages/overview/faq/index.page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ export default function Content() {
<NextPrevButton
prevLabel='Case Studies'
prevURL='/overview/case-studies'
nextLabel='Similar Technologies'
nextURL='/overview/similar-technologies'
nextLabel='Pro Help'
nextURL='/pro-help'
/>
<DocsHelp markdownFile={markdownFile} />
</SectionContext.Provider>
Expand Down
7 changes: 7 additions & 0 deletions pages/pro-help/index.page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import Head from 'next/head';
import { Headline1 } from '~/components/Headlines';
import { SectionContext } from '~/context';
import { DocsHelp } from '~/components/DocsHelp';
import NextPrevButton from '~/components/NavigationButtons';

interface ContractorLink {
title: string;
Expand Down Expand Up @@ -208,6 +209,12 @@ export default function ProHelp({ contractorData }: ProHelpPageProps) {
<br />
</div>
</div>
<NextPrevButton
prevLabel='FAQ'
prevURL='/overview/faq'
nextLabel='Similar Technologies'
nextURL='/overview/similar-technologies'
/>
<DocsHelp />
</div>
</SectionContext.Provider>
Expand Down

0 comments on commit 621c787

Please sign in to comment.