Skip to content

Commit

Permalink
Tweaking the page titles for home, blog and projects
Browse files Browse the repository at this point in the history
  • Loading branch information
sony-mathew committed Jan 5, 2025
1 parent 1d49f96 commit 3314afa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion site/pages/blog.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export default function Home({ allPostsData }) {
return (
<Layout>
<Head>
<title>Blog | { DEFAULT_CONFIG.siteTitle } | by {DEFAULT_CONFIG.author} </title>
<title>Blog | { DEFAULT_CONFIG.siteTitle } by {DEFAULT_CONFIG.author} </title>
{ MetaData() }
</Head>
<section>
Expand Down
2 changes: 1 addition & 1 deletion site/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default function Home({ allPostsData }) {
return (
<Layout home>
<Head>
<title>{ DEFAULT_CONFIG.siteTitle } | by {DEFAULT_CONFIG.author}</title>
<title>{ DEFAULT_CONFIG.siteTitle } by {DEFAULT_CONFIG.author}</title>
{ MetaData() }
</Head>
<div className="flex flex-row gap-8 items-center justify-center">
Expand Down
2 changes: 1 addition & 1 deletion site/pages/projects.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default function Home({ allPostsData }) {
return (
<Layout>
<Head>
<title>Projects | { DEFAULT_CONFIG.siteTitle } | by {DEFAULT_CONFIG.author} </title>
<title>Projects | { DEFAULT_CONFIG.siteTitle } by {DEFAULT_CONFIG.author} </title>
{ MetaData() }
</Head>
<section>
Expand Down

0 comments on commit 3314afa

Please sign in to comment.