Skip to content

Commit 6dc431f

Browse files
committed
-
1 parent a13de07 commit 6dc431f

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

components/Layout.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,7 @@ const Layout: FC<Props> = ({ className, children, ...rest }) => {
2626
{...rest}
2727
>
2828
<Head>
29-
<title>
30-
{WEBSITE.name} | {WEBSITE.tagline}
31-
</title>
29+
<title>{`${WEBSITE.name} | ${WEBSITE.tagline}`}</title>
3230
<meta name="description" content={WEBSITE.description} />
3331
<meta name="keywords" content={WEBSITE.keywords.join(", ")} />
3432
<meta name="author" content={WEBSITE.author} />

pages/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const Home = () => {
3838
exit="hidden"
3939
className="max-w-sm xl:max-w-xl mx-auto xl:mx-0 mb-10 xl:mb-16"
4040
>
41-
{WEBSITE.name} - {WEBSITE.description}
41+
{`${WEBSITE.name} - ${WEBSITE.description}`}
4242
</motion.h2>
4343

4444
<div className="flex justify-center xl:hidden relative">

0 commit comments

Comments
 (0)