Total Complexity | 0 |
Complexity/F | 0 |
Lines of Code | 17 |
Function Count | 0 |
Duplicated Lines | 0 |
Ratio | 0 % |
Coverage | 100% |
Changes | 0 |
1 | import React from 'react' |
||
2 | import NextHead from 'next/head' |
||
3 | |||
4 | 1 | const Head = () => ( |
|
5 | 1 | <NextHead> |
|
6 | <title>Portfolio</title> |
||
7 | <meta charSet="utf-8" /> |
||
8 | <meta name="description" content="Dekal 's Portfolio" /> |
||
9 | <meta |
||
10 | name="keywords" |
||
11 | content="portfolio, dekal, software engineer, freelancer, cv, work" |
||
12 | /> |
||
13 | </NextHead> |
||
14 | ) |
||
15 | |||
16 | export default Head |
||
17 |