Skip to content

Commit 61cb1b1

Browse files
committed
feat: add seo tags to json schema tool page
1 parent a838896 commit 61cb1b1

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/pages/tools/json-schema.tsx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ import React from "react";
22
import { Box, Button, Container, Flex, Paper, Title, Text } from "@mantine/core";
33
import { Editor, type OnMount } from "@monaco-editor/react";
44
import { JSONSchemaFaker } from "json-schema-faker";
5+
import { NextSeo } from "next-seo";
56
import { LuCheck, LuXCircle } from "react-icons/lu";
7+
import { SEO } from "src/constants/seo";
68
import { FileFormat, TypeLanguage } from "src/enums/file.enum";
79
import { editorOptions } from "src/layout/ConverterLayout/options";
810
import Layout from "src/layout/PageLayout";
@@ -46,6 +48,12 @@ const JSONSchemaTool = () => {
4648

4749
return (
4850
<Layout>
51+
<NextSeo
52+
{...SEO}
53+
title="JSON Schema Validator & Generator"
54+
description="Use our JSON Schema Validator & Generator tool to easily validate and generate JSON schemas, and generate data from JSON schemas. Simply input your JSON data, generate the corresponding schema, and validate your data with ease."
55+
canonical="https://jsoncrack.com/tools/json-schema"
56+
/>
4957
<Container mt="xl" size="xl">
5058
<Title c="black">JSON Schema Validator & Generator</Title>
5159
<Flex pt="lg" gap="lg">

0 commit comments

Comments
 (0)