Skip to content

Commit a45c15b

Browse files
committed
Adds head meta title to submit page
1 parent 0e48c33 commit a45c15b

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

app/pages/submit.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import React from "react";
22
import { NextPage } from "next";
3+
import Head from "next/head";
34
import { useRouter } from "next/router";
45
import { Auth, Input, Button } from "@supabase/ui";
56
import { gql } from "../gql";
@@ -63,6 +64,11 @@ const Submit: NextPage = () => {
6364

6465
return (
6566
<Container>
67+
<Head>
68+
<title>supanews | Submit New Item</title>
69+
<meta name="description" content="What is hot?" />
70+
<link rel="icon" href="/favicon.ico" />
71+
</Head>
6672
<MainSection>
6773
<form className="container px-5 py-24 mx-auto max-w-md">
6874
<h1 className="font-semibold text-xl tracking-tight mb-5">Submit</h1>

0 commit comments

Comments
 (0)