Sfoglia il codice sorgente

complete migration

AykutSarac 2 anni fa
parent
commit
4b1e5b923e

+ 4 - 4
README.md

@@ -1,6 +1,6 @@
 <center>
   <a href="https://jsoncrack.com">
-    <img width="1080" alt="jsonvisio" src="https://user-images.githubusercontent.com/47941171/182015412-f048058e-6e31-4cf6-bcfc-ab9ba3f6e005.png">
+    <img width="1080" alt="jsoncrack" src="https://user-images.githubusercontent.com/47941171/182015412-f048058e-6e31-4cf6-bcfc-ab9ba3f6e005.png">
   </a>
 </center>
 
@@ -25,7 +25,7 @@
   </p>
 
   <p align="center">
-      <img width="800" src="/public/jsonvisio-screenshot.webp" alt="preview 1" />
+      <img width="800" src="/public/jsoncrack-screenshot.webp" alt="preview 1" />
   </p>
 
 # JSON Crack (jsoncrack.com)
@@ -59,8 +59,8 @@ You can use the web version at [jsoncrack.com](https://jsoncrack.com) or also ru
 A Docker file is provided in the root of the repository.
 If you want to run JSON Crack locally:
 
-* Build Docker image with `docker build -t jsonvisio .`
-* Run locally with `docker run -p 8888:8080 jsonvisio`
+* Build Docker image with `docker build -t jsoncrack .`
+* Run locally with `docker run -p 8888:8080 jsoncrack`
 * Go to [http://localhost:8888]
 ```
 

+ 1 - 1
package.json

@@ -1,5 +1,5 @@
 {
-  "name": "json-visio",
+  "name": "json-crack",
   "private": true,
   "version": "v2.0.0",
   "author": "https://github.com/AykutSarac",

BIN
public/192.png


BIN
public/512.png


BIN
public/favicon.ico


BIN
public/jsoncrack-screenshot.webp


BIN
public/jsoncrack.png


BIN
public/jsonvisio.png


+ 1 - 1
src/components/Sidebar/index.tsx

@@ -124,7 +124,7 @@ export const Sidebar: React.FC = () => {
     const file = new Blob([getJson()], { type: "text/plain" });
 
     a.href = window.URL.createObjectURL(file);
-    a.download = "jsonvisio.json";
+    a.download = "jsoncrack.json";
     a.click();
   };
 

+ 1 - 1
src/containers/Home/index.tsx

@@ -83,7 +83,7 @@ const Home: React.FC = () => {
           <Styles.StyledImage
             width="1200"
             height="863"
-            src="/jsonvisio-screenshot.webp"
+            src="/jsoncrack-screenshot.webp"
             alt="preview"
             loading="lazy"
           />

+ 1 - 1
src/pages/_document.tsx

@@ -40,7 +40,7 @@ class MyDocument extends Document {
           <SeoTags
             description="Simple visualization tool for your JSON data. No forced structure, paste your JSON and view it instantly."
             title="JSON Crack - Crack your data into pieces"
-            image="https://jsoncrack.com/jsonvisio.png"
+            image="https://jsoncrack.com/jsoncrack.png"
           />
           <meta name="theme-color" content="#36393E" />
           <link rel="manifest" href="/manifest.json" />