Skip to content

Commit

Permalink
add interesting playground og description
Browse files Browse the repository at this point in the history
Resolves #15.
  • Loading branch information
EthanThatOneKid committed Apr 1, 2024
1 parent 7fe35e0 commit 8eff844
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion routes/p/[[id]].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,16 @@ export default async function PlaygroundHandler(
}
}

const pageTitle = "jsonx | Playground";
return (
<>
<Head>
<title>jsonx | Playground</title>
<title>{pageTitle}</title>
<meta property="og:title" content={pageTitle} />
<meta
property="og:description"
content="Edit and run jsonx code in your browser."
/>
<meta name="robots" content="noindex, nofollow" />
</Head>

Expand Down

0 comments on commit 8eff844

Please sign in to comment.