Skip to content

Commit

Permalink
utilize IconGolub component
Browse files Browse the repository at this point in the history
  • Loading branch information
firehawk89 committed Jan 16, 2024
1 parent f203fa7 commit d7d47f6
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions src/app/auth/page.tsx
Original file line number Diff line number Diff line change
@@ -1,27 +1,22 @@
import FormAuth from '@/components/Pages/Auth/FormAuth'
import ImageCard from '@/components/Pages/Auth/ImageCard'
import Container from '@/components/UI/Container'
import Image from 'next/image'
import IconGolub from '@/components/UI/Icons/IconGolub'
import Layout from '@/components/UI/Layout'

export default function Auth() {
return (
<section className="h-screen w-screen bg-gradient-blue-white">
<Container className="flex items-center justify-center">
<Layout className="flex items-center justify-center">
<div className="card p-7 sm:p-10 flex gap-7 md:gap-[3.75rem] bg-white">
<ImageCard className="hidden sm:block -my-[4.375rem] flex-shrink-0">
<Image
alt="Golub"
height={161}
src="/images/golub.png"
width={196}
/>
<IconGolub />
</ImageCard>
<div>
<h1 className="title-lg">Authentication</h1>
<FormAuth />
</div>
</div>
</Container>
</Layout>
</section>
)
}

0 comments on commit d7d47f6

Please sign in to comment.