Skip to content
This repository has been archived by the owner on Aug 7, 2024. It is now read-only.

Commit

Permalink
fix: login page logo (#9777)
Browse files Browse the repository at this point in the history
* fix: login page logo

* fix: logo for og tag
  • Loading branch information
eddiejaoude authored Nov 12, 2023
1 parent ac0f388 commit f3b4cc1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions pages/auth/signin.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import Image from "next/image";
import { getServerSession } from "next-auth/next";
import { signIn } from "next-auth/react";

Expand All @@ -7,7 +6,7 @@ import { authOptions } from "pages/api/auth/[...nextauth]";
import { BsGithub } from "react-icons/bs";
import Button from "@components/Button";
import Link from "@components/Link";
import { PROJECT_NAME } from "@constants/index";
import Logo from "@public/logos/Logo";

export async function getServerSideProps(context) {
const session = await getServerSession(context.req, context.res, authOptions);
Expand All @@ -26,13 +25,7 @@ export default function SignIn() {
<div className="flex min-h-screen items-center justify-center px-4 py-12 sm:px-6 lg:px-8">
<div className="w-full max-w-sm space-y-8 min-w-max">
<Link href="/">
<Image
width={100}
height={100}
className="mx-auto h-64 w-auto"
src="/logo512.png"
alt={`${PROJECT_NAME} logo`}
/>
<Logo className="w-1/2" />
</Link>
<h2 className="mt-6 text-center text-3xl font-bold tracking-tight text-primary-medium flex flex-col">
<span>Connect to YOUR audience</span>
Expand Down
Binary file added public/logo512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit f3b4cc1

Please sign in to comment.