summaryrefslogtreecommitdiff
path: root/src/core/components/Seo.jsx
diff options
context:
space:
mode:
authorRafi Zadanly <zadanlyr@gmail.com>2023-02-22 11:03:34 +0700
committerRafi Zadanly <zadanlyr@gmail.com>2023-02-22 11:03:34 +0700
commitf66b12fd1d0b83af0d7230d7b1565fbe00afbe3c (patch)
tree253dcf854a3c92e09ca846e86a09e5b4c5d16be1 /src/core/components/Seo.jsx
parent3c559031623649a67825ff47f34512f0eb946861 (diff)
prettier
Diffstat (limited to 'src/core/components/Seo.jsx')
-rw-r--r--src/core/components/Seo.jsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/components/Seo.jsx b/src/core/components/Seo.jsx
index bcfaa6ef..e688077e 100644
--- a/src/core/components/Seo.jsx
+++ b/src/core/components/Seo.jsx
@@ -1,11 +1,11 @@
-import Head from "next/head"
+import Head from 'next/head'
const Seo = ({ title }) => {
return (
<Head>
- <title>{ title }</title>
+ <title>{title}</title>
</Head>
)
}
-export default Seo \ No newline at end of file
+export default Seo