diff --git a/app/root.tsx b/app/root.tsx index 00f090c..9faeb4a 100644 --- a/app/root.tsx +++ b/app/root.tsx @@ -20,7 +20,6 @@ export const meta: MetaFunction = () => { return [ { charset: "utf-8" }, { name: "viewport", content: "width=device-width, initial-scale=1" }, - { title: "Gleb Khaykin" }, { property: "og:title", content: "Gleb Khaykin" }, { property: "og:description", content: "Personal website" }, { diff --git a/app/routes/_index.tsx b/app/routes/_index.tsx index 55d3a1c..ececdf8 100644 --- a/app/routes/_index.tsx +++ b/app/routes/_index.tsx @@ -6,6 +6,7 @@ import { Header } from "~/components/organisms/Header"; export const meta: MetaFunction = () => { return [ + { charset: "utf-8" }, { name: "author", content: "Gleb Khaykin" }, { property: "og:title", content: "About | Gleb Khaykin" }, { property: "og:description", content: "Gleb Khaykin's personal website" }, diff --git a/app/routes/blog.$slug.tsx b/app/routes/blog.$slug.tsx index 304acbe..7f8ce09 100644 --- a/app/routes/blog.$slug.tsx +++ b/app/routes/blog.$slug.tsx @@ -112,6 +112,7 @@ export const meta: MetaFunction = ({ data }: { data: { post: Post } }) => { const description = `Created at ${post.publishDate.replace(/-/g, "/")}`; return [ + { charset: "utf-8" }, { name: "author", content: "Gleb Khaykin" }, { property: "og:image", diff --git a/app/routes/blog._index.tsx b/app/routes/blog._index.tsx index 54bf4b3..e48d974 100644 --- a/app/routes/blog._index.tsx +++ b/app/routes/blog._index.tsx @@ -10,6 +10,7 @@ import { posts } from "~/data/posts"; export const meta: MetaFunction = () => { return [ + { charset: "utf-8" }, { name: "author", content: "Gleb Khaykin" }, { property: "og:title", content: "Posts | Gleb Khaykin" }, { property: "og:description", content: "Gleb Khaykin's personal website" },