Skip to content

Commit

Permalink
fix(meta): improve metatags
Browse files Browse the repository at this point in the history
  • Loading branch information
Pkcarreno committed Nov 2, 2024
1 parent 7f5d322 commit 0b7d36d
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
22 changes: 21 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,27 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>JSoD - JS on Demand</title>
<link rel="canonical" href="https://pkcarreno.github.io/jsod" />
<title>JSoD</title>

<meta
name="description"
content="This is an app to run and share JavaScript code from your browser. It is installable, offline and has a simple-to-use interface."
/>
<meta
name="keywords"
content="JS, JavaScript, run, quickjs, execute, online, share"
/>
<meta name="author" content="Pkcarreno" />

<meta property="og:title" content="JSoD" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://pkcarreno.github.io/jsod" />
<meta property="twitter:title" content="JSoD" />
<meta
property="twitter:description"
content="This is an app to run and share JavaScript code from your browser. It is installable, offline and has a simple-to-use interface."
/>

<link rel="apple-touch-icon" href="/icons/pwa-icon_x180.png" />
<link rel="icon" href="/icons/favicon.ico" sizes="32x32" />
Expand Down
2 changes: 1 addition & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export default defineConfig(({ mode }) => {
registerType: 'prompt',
injectRegister: 'auto',
manifest: {
name: 'JS on Demand',
name: 'JSOD',
short_name: 'JSOD',
id: 'com.pkcarreno.jsod',
start_url: `${process.env.BASE_URL}/`,
Expand Down

0 comments on commit 0b7d36d

Please sign in to comment.