Skip to content

Commit

Permalink
Website: fix title
Browse files Browse the repository at this point in the history
  • Loading branch information
mnapoli committed Oct 11, 2023
1 parent 542638c commit 9a6da67
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions website/theme.config.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,25 +16,25 @@ export default {
// On SSG the path is `/index` instead of `/` for some reason
if (asPath === '/' || asPath === '/index') {
return {
titleTemplate: '%sBref',
titleTemplate: 'BrefSimple and scalable PHP with serverless',
openGraph: {
images: [
{
url: '/social-card.png',
},
],
},
url: '/social-card.png'
}
]
}
};
} else {
return {
titleTemplate: 'BrefSimple and scalable PHP with serverless',
titleTemplate: '%sBref',
openGraph: {
images: [
{
url: '/social-card.png',
},
],
},
url: '/social-card.png'
}
]
}
};
}
},
Expand Down

0 comments on commit 9a6da67

Please sign in to comment.