Skip to content

Commit 07e2651

Browse files
committed
update meta tags
1 parent 6393d56 commit 07e2651

File tree

2 files changed

+12
-11
lines changed

2 files changed

+12
-11
lines changed

src/pages/_app.tsx

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { createTheme, MantineProvider } from "@mantine/core";
44
import "@mantine/core/styles.css";
55
import "@mantine/code-highlight/styles.css";
66
import { ThemeProvider } from "styled-components";
7-
import { NextSeo } from "next-seo";
7+
import { NextSeo, SoftwareAppJsonLd } from "next-seo";
88
import { GoogleAnalytics } from "nextjs-google-analytics";
99
import { Toaster } from "react-hot-toast";
1010
import GlobalStyle from "src/constants/globalStyle";
@@ -56,6 +56,16 @@ function JsonCrack({ Component, pageProps }: AppProps) {
5656
return (
5757
<>
5858
<NextSeo {...SEO} />
59+
<SoftwareAppJsonLd
60+
name="JSON Crack"
61+
price="0"
62+
priceCurrency="USD"
63+
aggregateRating={{ ratingValue: "4.6", reviewCount: "5" }}
64+
type="DeveloperApplication"
65+
operatingSystem="Browser"
66+
keywords="json, json editor, json viewer, json formatter, json beautifier, json validator, json minifier, json compressor, json decompressor, json parser, json converter, json to yaml, json to xml, json to csv, json to tsv, json to html, json to markdown, json to base64, json to url, json to query string, json to form data, json to javascript object, json to php array, json to python dictionary, json to ruby hash, json to java object, json to c# object, json to go object, json to rust object, json to swift object, json to kotlin object, json to typescript object, json to graphql, json to sql, json to mongodb, json to yaml, yaml to json, xml to json, csv to json, tsv to json, html to json, markdown to json, base64 to json, url to json, query string to json, form data to json, javascript object to json, php array to json, python dictionary to json, ruby hash to json, java object to json, c# object to json, go object to json, rust object to json, swift object to json, kotlin object to json, typescript object to json, graphql to json, sql to json, mongodb to json, yaml to json, json to yaml, xml to json, csv to json, tsv to json, html to json, markdown to json, base64 to json, url to json, query string to json, form data to json, javascript object to json, php array to json, python dictionary to json, ruby hash to json, java object to json, c# object to json, go object to json, rust object to json, swift object to json, kotlin object to json, typescript object to json, graphql to json, sql to json, mongodb to json"
67+
applicationCategory="DeveloperApplication"
68+
/>
5969
<MantineProvider defaultColorScheme="light" theme={theme}>
6070
<ThemeProvider theme={lightTheme}>
6171
<Toaster

src/pages/index.tsx

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from "react";
22
import type { InferGetStaticPropsType, GetStaticProps } from "next";
3-
import { NextSeo, SoftwareAppJsonLd } from "next-seo";
3+
import { NextSeo } from "next-seo";
44
import { SEO } from "src/constants/seo";
55
import { FAQ } from "src/containers/Landing/FAQ";
66
import { Features } from "src/containers/Landing/Features";
@@ -15,15 +15,6 @@ export const HomePage = (props: InferGetStaticPropsType<typeof getStaticProps>)
1515
return (
1616
<Layout>
1717
<NextSeo {...SEO} canonical="https://jsoncrack.com" />
18-
<SoftwareAppJsonLd
19-
name="JSON Crack"
20-
price="0"
21-
priceCurrency="USD"
22-
type="DeveloperApplication"
23-
operatingSystem="All"
24-
keywords="json, json editor, json viewer, json formatter, json beautifier, json validator, json minifier, json compressor, json decompressor, json parser, json converter, json to yaml, json to xml, json to csv, json to tsv, json to html, json to markdown, json to base64, json to url, json to query string, json to form data, json to javascript object, json to php array, json to python dictionary, json to ruby hash, json to java object, json to c# object, json to go object, json to rust object, json to swift object, json to kotlin object, json to typescript object, json to graphql, json to sql, json to mongodb, json to yaml, yaml to json, xml to json, csv to json, tsv to json, html to json, markdown to json, base64 to json, url to json, query string to json, form data to json, javascript object to json, php array to json, python dictionary to json, ruby hash to json, java object to json, c# object to json, go object to json, rust object to json, swift object to json, kotlin object to json, typescript object to json, graphql to json, sql to json, mongodb to json, yaml to json, json to yaml, xml to json, csv to json, tsv to json, html to json, markdown to json, base64 to json, url to json, query string to json, form data to json, javascript object to json, php array to json, python dictionary to json, ruby hash to json, java object to json, c# object to json, go object to json, rust object to json, swift object to json, kotlin object to json, typescript object to json, graphql to json, sql to json, mongodb to json"
25-
applicationCategory="DeveloperApplication"
26-
/>
2718
<HeroSection />
2819
<HeroPreview />
2920
<Section1 />

0 commit comments

Comments
 (0)