Skip to content

Commit c933567

Browse files
committed
Login head meta tags
1 parent 9a1ead5 commit c933567

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

app/pages/login.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 type { NextPage } from "next";
3+
import Head from "next/head";
34
import { Auth } from "@supabase/ui";
45
import { useSupabaseClient } from "../lib/supabase";
56
import { useRouter } from "next/router";
@@ -23,6 +24,11 @@ const LogIn: NextPage = () => {
2324

2425
return (
2526
<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>
2632
<MainSection>
2733
<div className="m-width-md mx-auto">
2834
<h1 className="font-semibold text-xl tracking-tight mb-5">Login</h1>

0 commit comments

Comments
 (0)