Skip to content

Commit

Permalink
update meta tags
Browse files Browse the repository at this point in the history
  • Loading branch information
AykutSarac committed Oct 13, 2024
1 parent 6393d56 commit 07e2651
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
12 changes: 11 additions & 1 deletion src/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { createTheme, MantineProvider } from "@mantine/core";
import "@mantine/core/styles.css";
import "@mantine/code-highlight/styles.css";
import { ThemeProvider } from "styled-components";
import { NextSeo } from "next-seo";
import { NextSeo, SoftwareAppJsonLd } from "next-seo";
import { GoogleAnalytics } from "nextjs-google-analytics";
import { Toaster } from "react-hot-toast";
import GlobalStyle from "src/constants/globalStyle";
Expand Down Expand Up @@ -56,6 +56,16 @@ function JsonCrack({ Component, pageProps }: AppProps) {
return (
<>
<NextSeo {...SEO} />
<SoftwareAppJsonLd
name="JSON Crack"
price="0"
priceCurrency="USD"
aggregateRating={{ ratingValue: "4.6", reviewCount: "5" }}
type="DeveloperApplication"
operatingSystem="Browser"
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"
applicationCategory="DeveloperApplication"
/>
<MantineProvider defaultColorScheme="light" theme={theme}>
<ThemeProvider theme={lightTheme}>
<Toaster
Expand Down
11 changes: 1 addition & 10 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from "react";
import type { InferGetStaticPropsType, GetStaticProps } from "next";
import { NextSeo, SoftwareAppJsonLd } from "next-seo";
import { NextSeo } from "next-seo";
import { SEO } from "src/constants/seo";
import { FAQ } from "src/containers/Landing/FAQ";
import { Features } from "src/containers/Landing/Features";
Expand All @@ -15,15 +15,6 @@ export const HomePage = (props: InferGetStaticPropsType<typeof getStaticProps>)
return (
<Layout>
<NextSeo {...SEO} canonical="https://jsoncrack.com" />
<SoftwareAppJsonLd
name="JSON Crack"
price="0"
priceCurrency="USD"
type="DeveloperApplication"
operatingSystem="All"
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"
applicationCategory="DeveloperApplication"
/>
<HeroSection />
<HeroPreview />
<Section1 />
Expand Down

0 comments on commit 07e2651

Please sign in to comment.