From f40339da804dfab73be3eb10353c987bdaacd34a Mon Sep 17 00:00:00 2001 From: Alexey Date: Thu, 8 Apr 2021 16:22:56 +0000 Subject: [PATCH] Update title (#4) Rebranding from /dev.space --- pages/index.js | 4 ++-- pages/posts/[post].js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pages/index.js b/pages/index.js index 0ac0f5a..845999e 100644 --- a/pages/index.js +++ b/pages/index.js @@ -4,7 +4,7 @@ import matter from "gray-matter"; const Index = (props) => { return ( - +
@@ -40,7 +40,7 @@ export async function getStaticProps() { return { props: { posts, - title: "/dev.space", + title: "/home/garrit", description: "", }, }; diff --git a/pages/posts/[post].js b/pages/posts/[post].js index 4cbcd8a..184462c 100644 --- a/pages/posts/[post].js +++ b/pages/posts/[post].js @@ -185,7 +185,7 @@ export async function getStaticProps({ ...ctx }) { return { props: { - siteTitle: "/dev.space", + siteTitle: "/home/garrit", frontmatter: data.data, markdownBody: data.content, },