add og image

This commit is contained in:
m5r 2023-12-22 23:56:54 +01:00
parent 45a61d21b3
commit 31f60af66d
No known key found for this signature in database
GPG Key ID: 5BC847276DD5DDEA
2 changed files with 30 additions and 1 deletions

View File

@ -1,5 +1,5 @@
import { cssBundleHref } from "@remix-run/css-bundle";
import { json, type SerializeFrom, type LinksFunction } from "@remix-run/node";
import { json, type SerializeFrom, type LinksFunction, type MetaFunction } from "@remix-run/node";
import {
Links,
LiveReload,
@ -12,6 +12,35 @@ import {
import useFathom from "./hooks/use-fathom";
export const meta: MetaFunction = () => [
{ name: "title", content: "local-ip.sh" },
{
name: "description",
content: "local-ip.sh is a magic domain name that provides wildcard DNS for any IP address.",
},
{ name: "author", content: "Mokhtar Mial" },
{ name: "robots", content: "index,follow" },
{ name: "googlebot", content: "index,follow" },
{ property: "twitter:title", content: "local-ip.sh" },
{
property: "twitter:description",
content: "local-ip.sh is a magic domain name that provides wildcard DNS for any IP address.",
},
{ property: "twitter:card", content: "summary_large_image" },
{ property: "twitter:site", content: "https://local-ip.sh/" },
{ property: "twitter:image", content: "https://local-ip.sh/og.png" },
{ property: "twitter:image:alt", content: "og image" },
{ property: "og:title", content: "local-ip.sh" },
{
property: "og:description",
content: "local-ip.sh is a magic domain name that provides wildcard DNS for any IP address.",
},
{ property: "og:url", content: "https://local-ip.sh/" },
{ property: "og:type", content: "website" },
{ property: "og:image", content: "https://local-ip.sh/og.png" },
{ property: "og:image:alt", content: "og image" },
];
export const links: LinksFunction = () => [
...(cssBundleHref ? [{ rel: "stylesheet", href: cssBundleHref }] : []),
];

BIN
public/og.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB