Skip to content

Commit 7c761ab

Browse files
committed
Add a link to Docs to Navbar, Footer, and Mobile Menu
1 parent 29f314d commit 7c761ab

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

app/docs/coverage/javascript/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { workflow } from "./code/workflow";
88
export default function JavaScriptConfigurationPage() {
99
return (
1010
<>
11-
<h1 className="text-4xl font-bold mb-8">JavaScript/TypeScript Testing</h1>
11+
<h1 className="text-4xl font-bold mb-8">JavaScript / TypeScript Testing</h1>
1212

1313
<div className="space-y-12">
1414
<section>

config/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ export const RELATIVE_URLS = {
7878
COVERAGES: "/dashboard/coverage",
7979
TERMS_OF_SERVICE: "/terms-of-service",
8080
USE_CASES: "/#use-cases",
81+
DOCS: "/docs/coverage",
8182
} as const;
8283
export const ABSOLUTE_URLS = {
8384
CALENDLY: "https://calendly.com/gitauto/30min",

config/internal-links.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,13 @@ export const INTERNAL_LINKS = [
5757
category: "product",
5858
showInNav: true,
5959
},
60+
{
61+
href: RELATIVE_URLS.DOCS,
62+
eventType: "documentation",
63+
text: "Docs",
64+
category: "resources",
65+
showInNav: true,
66+
},
6067
{
6168
href: RELATIVE_URLS.FAQ,
6269
eventType: "faq",

0 commit comments

Comments
 (0)