Skip to content

Commit fc3b39b

Browse files
committed
fix(docs): fix header links
1 parent ea117d3 commit fc3b39b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

apps/docs/app/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ export async function GET(req: BunRequest) {
9494
.h2(
9595
wave
9696
.a(
97-
{ href: "/#gettingStarted", id: "gettingStarted" },
97+
{ href: "#gettingStarted", id: "gettingStarted" },
9898
"Getting started",
9999
)
100100
.toString(),
@@ -118,7 +118,7 @@ export async function GET(req: BunRequest) {
118118
})
119119
.div({ style: "margin-top: 6rem;" }, (waveDiv) => {
120120
waveDiv
121-
.h2(wave.a({ href: "/#wave", id: "wave" }, "🌊 Wave").toString())
121+
.h2(wave.a({ href: "#wave", id: "wave" }, "🌊 Wave").toString())
122122
.p(
123123
"Wave is a lightweight templating engine built on top of Bun. You can just do things.",
124124
)
@@ -131,7 +131,7 @@ export async function GET(req: BunRequest) {
131131
})
132132
.div({ style: "margin-top: 6rem;" }, (kitDiv) => {
133133
kitDiv
134-
.h2(wave.a({ href: "/#kit", id: "kit" }, "🧰 Kit").toString())
134+
.h2(wave.a({ href: "#kit", id: "kit" }, "🧰 Kit").toString())
135135
.p("Kit is a web server library. Use it like:")
136136
.div(
137137
highlighter.codeToHtml(waveKitKitCode, {

0 commit comments

Comments
 (0)