We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e48c33 commit a45c15bCopy full SHA for a45c15b
app/pages/submit.tsx
@@ -1,5 +1,6 @@
1
import React from "react";
2
import { NextPage } from "next";
3
+import Head from "next/head";
4
import { useRouter } from "next/router";
5
import { Auth, Input, Button } from "@supabase/ui";
6
import { gql } from "../gql";
@@ -63,6 +64,11 @@ const Submit: NextPage = () => {
63
64
65
return (
66
<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>
72
<MainSection>
73
<form className="container px-5 py-24 mx-auto max-w-md">
74
<h1 className="font-semibold text-xl tracking-tight mb-5">Submit</h1>
0 commit comments