Skip to content

Commit

Permalink
Update Head component (change meta description)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheeDouglasAM3 committed Jan 26, 2021
1 parent 6b75807 commit f928605
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Head/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Head from 'next/head'

export default function Home({ title, bg }) {
export default function Home({ title, description, bg }) {
return (
<Head>
<title>{title}</title>
Expand All @@ -11,7 +11,7 @@ export default function Home({ title, bg }) {
<meta property="og:title" content={title} />
<meta property="og:site_name" content="PatoQuiz" />

<meta property="og:description" content="Minha boa descrição para intrigar os usuários." />
<meta property="og:description" content={description} />
<meta property="og:image" content={bg} />
<meta property="og:image:type" content="image/jpg" />
<meta property="og:image:width" content="1920" />
Expand Down

2 comments on commit f928605

@vercel
Copy link

@vercel vercel bot commented on f928605 Jan 26, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

pato-quiz – ./

pato-quiz.vercel.app
pato-quiz-git-master.theedouglasam.vercel.app
pato-quiz.theedouglasam.vercel.app

@vercel
Copy link

@vercel vercel bot commented on f928605 Jan 26, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.