Adds <MetaTags>

This commit is contained in:
Rob Cameron
2022-02-08 14:53:19 -08:00
parent ab61793bcf
commit eebbfbd103
7 changed files with 31 additions and 13 deletions

View File

@@ -1,8 +1,12 @@
import { MetaTags } from '@redwoodjs/web'
import BlogPostsCell from 'src/components/BlogPostsCell'
const HomePage = () => {
return (
<BlogPostsCell />
<>
<MetaTags title="Home" description="Home page" />
<BlogPostsCell />
</>
)
}