summaryrefslogtreecommitdiff
path: root/src/core/components/Seo.jsx
blob: bcfaa6ef5f1788dd6f3cff1f7ee958dfa1e2dbda (plain)
1
2
3
4
5
6
7
8
9
10
11
import Head from "next/head"

const Seo = ({ title }) => {
  return (
    <Head>
      <title>{ title }</title>
    </Head>
  )
}

export default Seo