SEO tags and version 0.2.0-rev3

This commit is contained in:
ari melody 2024-06-30 00:05:35 +01:00
parent f2c96d5968
commit 078b3c21f6
Signed by: ari
GPG key ID: CF99829C92678188
4 changed files with 19 additions and 3 deletions

2
.gitignore vendored
View file

@ -1,5 +1,5 @@
**/.DS_Store **/.DS_Store
node_modules/ node_modules/
dist/ build/
.secret/ .secret/
.svelte-kit/ .svelte-kit/

View file

@ -1,6 +1,6 @@
{ {
"name": "spacesocial-client", "name": "spacesocial-client",
"version": "0.2.0_rev2", "version": "0.2.0_rev3",
"description": "social media for the galaxy-wide-web! 🌌", "description": "social media for the galaxy-wide-web! 🌌",
"private": true, "private": true,
"type": "module", "type": "module",

View file

@ -4,7 +4,23 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<link rel="icon" type="image/png" href="/favicon.png"> <link rel="icon" type="image/png" href="/favicon.png">
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1">
<title>Space Social</title> <title>Space Social</title>
<meta name="description" content="Social media for the galaxy-wide-web!">
<meta property="og:url" content="https://spacesocial.arimelody.me">
<meta property="og:type" content="website">
<meta property="og:title" content="Space Social">
<meta property="og:description" content="Social media for the galaxy-wide-web!">
<meta property="og:image" content="https://spacesocial.arimelody.me/favicon.png">
<meta name="twitter:card" content="summary_large_image">
<meta property="twitter:domain" content="spacesocial.arimelody.me">
<meta property="twitter:url" content="https://spacesocial.arimelody.me">
<meta name="twitter:title" content="Space Social">
<meta name="twitter:description" content="Social media for the galaxy-wide-web!">
<meta name="twitter:image" content="https://spacesocial.arimelody.me/favicon.png">
%sveltekit.head% %sveltekit.head%
</head> </head>
<body data-sveltekit-preload-data="hover"> <body data-sveltekit-preload-data="hover">

View file

@ -11,7 +11,7 @@ const config = {
adapter: adapter({ adapter: adapter({
pages: 'build', pages: 'build',
assets: 'build', assets: 'build',
fallback: "index.html", fallback: "fallback.html",
precompress: true, precompress: true,
strict: true, strict: true,
}), }),