Skip to content

Commit

Permalink
feat: add seo tags to json schema tool page
Browse files Browse the repository at this point in the history
  • Loading branch information
AykutSarac committed Dec 8, 2024
1 parent a838896 commit 61cb1b1
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/pages/tools/json-schema.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ import React from "react";
import { Box, Button, Container, Flex, Paper, Title, Text } from "@mantine/core";
import { Editor, type OnMount } from "@monaco-editor/react";
import { JSONSchemaFaker } from "json-schema-faker";
import { NextSeo } from "next-seo";
import { LuCheck, LuXCircle } from "react-icons/lu";
import { SEO } from "src/constants/seo";
import { FileFormat, TypeLanguage } from "src/enums/file.enum";
import { editorOptions } from "src/layout/ConverterLayout/options";
import Layout from "src/layout/PageLayout";
Expand Down Expand Up @@ -46,6 +48,12 @@ const JSONSchemaTool = () => {

return (
<Layout>
<NextSeo
{...SEO}
title="JSON Schema Validator & Generator"
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."
canonical="https://jsoncrack.com/tools/json-schema"
/>
<Container mt="xl" size="xl">
<Title c="black">JSON Schema Validator & Generator</Title>
<Flex pt="lg" gap="lg">
Expand Down

0 comments on commit 61cb1b1

Please sign in to comment.