-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds JSON-LD metadata for WebApplication
- Loading branch information
1 parent
a8654e5
commit f11612f
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,32 @@ | |
<link rel="apple-touch-icon" href="/generated-icons/apple-touch-icon-180x180.png" sizes="180x180"> | ||
<link rel="manifest" href="/manifest.webmanifest" /> | ||
<title>%VITE_APP_TITLE%</title> <!-- overridden by useEffect in App.jsx --> | ||
<script type="application/ld+json" class="schemantra">{ | ||
"@context": "https://schema.org", | ||
"@type": "WebApplication", | ||
"@id": "https://notestogether.hominidsoftware.com/", | ||
"aggregateRating": {"@type": "AggregateRating", "ratingValue": 5, "bestRating": 5, "worstRating": 1, "reviewCount": 1}, | ||
"applicationCategory": "productivity", | ||
"applicationSubCategory": "memos", | ||
"browserRequirements": "requires IndexedDB", | ||
"copyrightYear": "2021", | ||
"description": "Free your mind from mundane details! Toss in text, pictures, links and files Shared from native apps. Be confident you can find any note on any device. Take control of your data with remoteStorage. Never spend time tidying up — unless you want to!", | ||
"dateModified": "2024-07-30", | ||
"dateCreated": "2021-07-01", | ||
"datePublished": "2022-11-05", | ||
"discussionUrl": "mailto:[email protected]", | ||
"featureList": "https://hominidsoftware.com/notes-together/", | ||
"thumbnailUrl": "https://notestogether.hominidsoftware.com/generated-icons/NotesTogether-Icon.svg", | ||
"inLanguage": "en", | ||
"isAccessibleForFree": true, | ||
"isBasedOnUrl": "https://serenenotes.hominidsoftware.com/", | ||
"keywords": "notes, memos, full-text search, rich text, remoteStorage, PWA, installable, offline", | ||
"name": "%VITE_APP_TITLE%", | ||
"offers": {"@type": "Offer", "price": 0, "priceCurrency": "USD"}, | ||
"producer": {"@type": "Person", "givenName": "Doug", "familyName": "Reeder", "url": "https://hominidsoftware.com/"}, | ||
"screenshot": "https://notestogether.hominidsoftware.com/screenshots/search-wide.png", | ||
"url": "https://notestogether.hominidsoftware.com/" | ||
}</script> | ||
</head> | ||
<body> | ||
<noscript>You need to enable JavaScript to run this app.</noscript> | ||
|