Skip to content

Commit

Permalink
Modify layout
Browse files Browse the repository at this point in the history
  • Loading branch information
Defrian Yarfi committed Sep 3, 2020
1 parent af42032 commit 6ff9357
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion components/layout/Layout.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,22 @@ import Footer from "../footer/Footer";
export default function Layout({
children,
title = "Next.js with Sequelize | A boilerplate from dyarfi.github.io",
description = "Next.js with Sequelize | A boilerplate Next.js and Sequelize from dyarfi.github.io",
keywords = "Next.js, Sequelize, ORM, JWT, Json Web Tokens, Authentication, Application",
type = "website",
}) {
return (
<div>
<Head>
<meta charSet="utf-8" />
<title>{title}</title>
<link rel="icon" href="/favicon.ico" />
<meta charSet="utf-8" />
<meta name="robots" content="index, follow" />
<meta name="description" content={description} />
<meta name="keywords" content={keywords} />
<meta property="og:title" content={title} />
<meta property="og:description" content={description} />
<meta property="og:type" content={type} />
{/* <meta name="viewport" content="initial-scale=1.0, width=device-width" /> */}
<meta
name="viewport"
Expand Down

0 comments on commit 6ff9357

Please sign in to comment.