Add SEO to pages
This commit is contained in:
parent
5e36dabd16
commit
1530d55858
2 changed files with 4 additions and 0 deletions
|
@ -4,6 +4,7 @@ import React from 'react'
|
|||
import yaml from 'js-yaml'
|
||||
import fs from 'fs'
|
||||
import showdown from 'showdown'
|
||||
import { NextSeo } from 'next-seo'
|
||||
|
||||
function CVPage ({
|
||||
competencies,
|
||||
|
@ -14,6 +15,7 @@ function CVPage ({
|
|||
}) {
|
||||
return (
|
||||
<DefaultLayout>
|
||||
<NextSeo title='CV'/>
|
||||
<section>
|
||||
<h1>CV</h1>
|
||||
</section>
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
import DefaultLayout from '@/layouts/DefaultLayout/DefaultLayout'
|
||||
import { NextSeo } from 'next-seo'
|
||||
|
||||
export default function Writing () {
|
||||
return (
|
||||
<DefaultLayout>
|
||||
<NextSeo title='Writing' />
|
||||
<section>
|
||||
<h1>Writing</h1>
|
||||
</section>
|
||||
|
|
Loading…
Add table
Reference in a new issue