Skip to content

Commit

Permalink
Fix: #276
Browse files Browse the repository at this point in the history
  • Loading branch information
20santi committed Dec 12, 2023
1 parent 27dd480 commit d8e5cad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion pages/__app/signin.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { useRouter } from 'next/router'
import { useCallback, useEffect, useState } from 'react'
import { useForm } from 'react-hook-form'
import { toast } from 'react-hot-toast'
import ReviewAppLogo from '../../public/ebraj/landing-page/images/review-app-logo.png'
import * as z from 'zod'

import { Button } from '@/components/ui/button'
Expand Down Expand Up @@ -155,7 +156,7 @@ const SignInPage: NextPage = () => {
<section className="hidden flex-col justify-center bg-primary bg-gradient-to-br from-violet-500 bg-cover md:flex">
<div className="relative mx-auto h-full w-96">
<Image
src="/vercel.svg"
src={ReviewAppLogo}
alt="signup_image"
fill
style={{ objectFit: 'contain' }}
Expand Down
3 changes: 2 additions & 1 deletion pages/__app/signup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { useRouter } from 'next/router'
import { useCallback, useEffect, useState } from 'react'
import { useForm } from 'react-hook-form'
import { toast } from 'react-hot-toast'
import ReviewAppLogo from '../../public/ebraj/landing-page/images/review-app-logo.png'
import * as z from 'zod'

import { Button } from '@/components/ui/button'
Expand Down Expand Up @@ -208,7 +209,7 @@ const SignUpPage: NextPage = () => {
<section className="hidden flex-col justify-center bg-primary bg-gradient-to-br from-violet-500 bg-cover md:flex">
<div className="relative mx-auto h-full w-96">
<Image
src="/vercel.svg"
src={ReviewAppLogo}
alt="signup_image"
fill
style={{ objectFit: 'contain' }}
Expand Down

0 comments on commit d8e5cad

Please sign in to comment.