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 9a1ead5 commit c933567Copy full SHA for c933567
app/pages/login.tsx
@@ -1,5 +1,6 @@
1
import React from "react";
2
import type { NextPage } from "next";
3
+import Head from "next/head";
4
import { Auth } from "@supabase/ui";
5
import { useSupabaseClient } from "../lib/supabase";
6
import { useRouter } from "next/router";
@@ -23,6 +24,11 @@ const LogIn: NextPage = () => {
23
24
25
return (
26
<Container>
27
+ <Head>
28
+ <title>supanews | Login</title>
29
+ <meta name="description" content="Sign in to submit posts and vote." />
30
+ <link rel="icon" href="/favicon.ico" />
31
+ </Head>
32
<MainSection>
33
<div className="m-width-md mx-auto">
34
<h1 className="font-semibold text-xl tracking-tight mb-5">Login</h1>
0 commit comments