Skip to content

Commit

Permalink
feat: add SEO component to jwt-parser page
Browse files Browse the repository at this point in the history
  • Loading branch information
EduardoDePatta committed Aug 23, 2024
1 parent 48d76dd commit e444fe7
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions pages/utilities/jwt-parser.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ import { CMDK } from "@/components/CMDK";
import { useCopyToClipboard } from "@/components/hooks/useCopyToClipboard";
import CallToActionGrid from "@/components/CallToActionGrid";
import Meta from "@/components/Meta";
import { decodeJWT } from "../../components/utils/jwt-parser.utils";
import { decodeJWT } from "@/components/utils/jwt-parser.utils";
import JWTParserSEO from "../../components/seo/JWTParserSEO";

export default function JWTParser() {
const [input, setInput] = useState("");
Expand Down Expand Up @@ -48,7 +49,7 @@ export default function JWTParser() {
return (
<main>
<Meta
title="JWT Parser by Jam.dev | Free, Open Source & Ad-free"
title="JWT Parser | Free, Open Source & Ad-free"
description="Decode JWT tokens quickly and easily with Jam's free online JWT Decoder. Just paste your token and get the decoded result. That's it."
/>
<Header />
Expand Down Expand Up @@ -110,6 +111,10 @@ export default function JWTParser() {
</section>

<CallToActionGrid />

<section className="container max-w-2xl mb-6">
<JWTParserSEO />
</section>
</main>
);
}

0 comments on commit e444fe7

Please sign in to comment.