Skip to content

Instantly share code, notes, and snippets.

@alanhchoi
Created January 31, 2022 11:43
Show Gist options
  • Save alanhchoi/bfa5d864eb2f73bee10a9b1c40c448bb to your computer and use it in GitHub Desktop.
Save alanhchoi/bfa5d864eb2f73bee10a9b1c40c448bb to your computer and use it in GitHub Desktop.
import Head from 'next/head';
export const pageTitleSuffix = ' / hoseokchoi.com';
export default function PageTitle({ children }: { children: string }) {
return (
<Head>
<title>{children.concat(pageTitleSuffix)}</title>
</Head>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment