1
0
mirror of https://github.com/theoludwig/theoludwig.git synced 2026-05-06 13:48:12 +02:00

fix: update name with full name and nickname

This commit is contained in:
Divlo
2023-05-29 17:10:14 +02:00
parent f41bc644b1
commit ba34e314c9
13 changed files with 35 additions and 33 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ const Error404: NextPage<Error404Props> = (props) => {
return (
<>
<Head title='404 | Divlo' />
<Head title='404 | Théo LUDWIG (Divlo)' />
<ErrorPage
statusCode={404}
message={t('errors:not-found')}
+1 -1
View File
@@ -13,7 +13,7 @@ const Error500: NextPage<Error500Props> = (props) => {
return (
<>
<Head title='500 | Divlo' />
<Head title='500 | Théo LUDWIG (Divlo)' />
<ErrorPage
statusCode={500}
message={t('errors:server-error')}
+1 -1
View File
@@ -25,7 +25,7 @@ const BlogPostPage: NextPage<BlogPostPageProps> = (props) => {
return (
<>
<Head
title={`${post.frontmatter.title} | Divlo`}
title={`${post.frontmatter.title} | Théo LUDWIG (Divlo)`}
description={post.frontmatter.description}
/>