Skip to content

Commit 09aff0e

Browse files
committed
feat: add simple SEO to wizard page
1 parent 0232da1 commit 09aff0e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

components/wizard/index.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { useRouter } from "next/router";
33
import { GradientBackground } from "../Layout";
44

55
import { Step1, Step2, Step3, Step4, Step5 } from "./Steps";
6+
import SEO from "../SEO";
67

78
export const WizardContext = React.createContext({});
89

@@ -56,6 +57,10 @@ export default function Wizard(props) {
5657

5758
return (
5859
<>
60+
<SEO
61+
title="Create new blog"
62+
description="Use this simple wizard to create a new blog. Based on Next.js, Tailwind 3.0 and MDX. Deploy straight to Netlify."
63+
/>
5964
<div className="w-full h-full min-h-screen flex flex-col items-center justify-center">
6065
<Step
6166
onClickNext={onClickNext}

0 commit comments

Comments
 (0)