|
3 | 3 |
|
4 | 4 | <head> |
5 | 5 | <meta charset="utf-8" /> |
6 | | - <link rel="icon" href="%PUBLIC_URL%/favicon.ico" /> |
| 6 | + |
| 7 | + <title>JSON•Edit•React</title> |
| 8 | + |
7 | 9 | <meta name="viewport" content="width=device-width, initial-scale=1" /> |
8 | 10 | <meta name="theme-color" content="#000000" /> |
9 | | - <meta name="JSON Edit React" content="Web site created using create-react-app" /> |
| 11 | + |
| 12 | + <meta name="description" content="A highly-configurable React component for editing or viewing JSON/object data"> |
| 13 | + |
| 14 | + |
| 15 | + <!-- Standard favicon --> |
| 16 | + <link rel="icon" type="image/x-icon" href="%PUBLIC_URL%/favicon.ico"> |
| 17 | + |
| 18 | + <!-- PNG favicons for modern browsers --> |
| 19 | + <link rel="icon" type="image/png" sizes="16x16" href="%PUBLIC_URL%/image/favicon_16.png"> |
| 20 | + <link rel="icon" type="image/png" sizes="32x32" href="%PUBLIC_URL%/image/favicon_32.png"> |
| 21 | + <link rel="icon" type="image/png" sizes="96x96" href="%PUBLIC_URL%/image/favicon_96.png"> |
| 22 | + |
| 23 | + <!-- Apple Touch Icons --> |
| 24 | + <link rel="apple-touch-icon" sizes="180x180" href="%PUBLIC_URL%/image/apple-touch-icon.png"> |
| 25 | + |
| 26 | + <!-- Android/Chrome --> |
| 27 | + <link rel="icon" type="image/png" sizes="192x192" href="%PUBLIC_URL%/image/icon_192.png"> |
| 28 | + <link rel="icon" type="image/png" sizes="512x512" href="%PUBLIC_URL%/image/icon_512.png"> |
| 29 | + |
| 30 | + |
10 | 31 | <link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" /> |
| 32 | + |
| 33 | + <!-- Open Graph Tags --> |
| 34 | + <meta property="og:title" content="JSON•Edit•React"> |
| 35 | + <meta property="og:description" content="A highly-configurable React component for editing or viewing JSON/object data"> |
| 36 | + <meta property="og:image" content="https://carlosnz.github.io/json-edit-react/image/social_banner.png"> |
| 37 | + <meta property="og:url" content="https://carlosnz.github.io/json-edit-react/"> |
| 38 | + <meta property="og:type" content="website"> |
| 39 | + <meta property="og:site_name" content="JSON•Edit•React"> |
| 40 | + |
| 41 | + <!-- Twitter Card Tags --> |
| 42 | + <meta name="twitter:card" content="summary_large_image"> |
| 43 | + <!-- <meta name="twitter:site" content="@YourTwitterHandle"> --> |
| 44 | + <meta name="twitter:title" content="JSON•Edit•React"> |
| 45 | + <meta name="twitter:description" content="A highly-configurable React component for editing or viewing JSON/object data"> |
| 46 | + <meta name="twitter:image" content="https://carlosnz.github.io/json-edit-react/image/social_banner.png"> |
| 47 | + |
| 48 | + <!-- Schema.org Structured Data --> |
| 49 | + <script type="application/ld+json"> |
| 50 | + { |
| 51 | + "@context": "https://schema.org", |
| 52 | + "@type": "SoftwareApplication", |
| 53 | + "applicationCategory": "DeveloperApplication", |
| 54 | + "name": "JSON Edit React", |
| 55 | + "url": "https://carlosnz.github.io/json-edit-react", |
| 56 | + "description": "A highly-configurable React component for editing or viewing JSON/object data", |
| 57 | + "image": "https://carlosnz.github.io/json-edit-react/image/social_banner.png", |
| 58 | + "featureList": [ |
| 59 | + "JSON editing, JSON viewing, validation, formatting, tree view" |
| 60 | + ], |
| 61 | + "keywords": [ |
| 62 | + "react", |
| 63 | + "component", |
| 64 | + "interactive", |
| 65 | + "interactive-json", |
| 66 | + "json", |
| 67 | + "json-component", |
| 68 | + "json-display", |
| 69 | + "json-tree", |
| 70 | + "json-view", |
| 71 | + "json-viewer", |
| 72 | + "json-inspector", |
| 73 | + "json-schema", |
| 74 | + "react-component", |
| 75 | + "react-json", |
| 76 | + "react18-json-view", |
| 77 | + "react-json-view", |
| 78 | + "theme", |
| 79 | + "tree", |
| 80 | + "tree-view", |
| 81 | + "treeview" |
| 82 | + ] |
| 83 | + } |
| 84 | + </script> |
| 85 | + |
11 | 86 | <!-- |
12 | 87 | manifest.json provides metadata used when your web app is installed on a |
13 | 88 | user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/ |
|
22 | 97 | work correctly both with client-side routing and a non-root public URL. |
23 | 98 | Learn how to configure a non-root public URL by running `npm run build`. |
24 | 99 | --> |
25 | | - <title>JSON•Edit•React</title> |
26 | 100 | <script async data-id="%REACT_APP_CLICKY_ID%" src="//static.getclicky.com/js"></script> |
27 | 101 | </head> |
28 | 102 |
|
|
0 commit comments