We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 477ed13 commit 7e0ef91Copy full SHA for 7e0ef91
components/Meta.js
@@ -1,14 +1,14 @@
1
import Head from "next/head";
2
-import { title, keywords, description } from "../utils/meta";
+import { meta } from "../utils/meta";
3
4
export default function Meta() {
5
return (
6
<Head>
7
<meta name="viewport" content="width=device-width, initial-scale=1" />
8
- <meta name="keywords" content={keywords} />
9
- <meta name="description" content={description} />
+ <meta name="keywords" content={meta.keywords} />
+ <meta name="description" content={meta.description} />
10
<meta charSet="utf-8" />
11
- <title>{title}</title>
+ <title>{meta.title}</title>
12
<link rel="icon" href="/favicon.ico" />
13
</Head>
14
);
0 commit comments