chore: update meta tags

This commit is contained in:
Andrea 2024-09-25 10:24:36 +02:00
parent ceb31f2bcc
commit 45c6fb54a0
No known key found for this signature in database
GPG Key ID: 4594610B9C8F91C5
2 changed files with 18 additions and 1 deletions

View File

@ -24,7 +24,7 @@ export const meta: MetaFunction = () => [
charSet: "utf-8",
},
{
title: "nullndr",
title: "Nullndr",
},
{
property: "viewport",

View File

@ -1,8 +1,25 @@
import type { MetaFunction } from "@remix-run/node";
import { Link } from "@remix-run/react";
import { Outlet } from "react-router-dom";
import { LinkWrapper } from "~/components/LinkWrapper";
import { useMatch } from "~/hooks/useMatch";
export const meta: MetaFunction = () => {
return [
{
title: "Nullndr's blog",
},
{
property: "og:title",
content: "Nullndr's blog",
},
{
property: "description",
content: "Another blog by Nullndr.",
},
];
};
export default function () {
const { handle } = useMatch();