Skip to content

Commit

Permalink
utilize ButtonThemeToggle, update styles
Browse files Browse the repository at this point in the history
  • Loading branch information
firehawk89 committed Jan 16, 2024
1 parent 73f5999 commit 3384f37
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/app/auth/page.tsx
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
import FormAuth from '@/components/Pages/Auth/FormAuth'
import ImageCard from '@/components/Pages/Auth/ImageCard'
import ButtonThemeToggle from '@/components/UI/ButtonThemeToggle'
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">
<Layout className="flex items-center justify-center">
<div className="card p-7 sm:p-10 flex gap-7 md:gap-[3.75rem] bg-white">
<Layout className="flex items-center justify-center dark:bg-none dark:bg-base-gray-8">
<div className="card p-7 sm:p-10 flex gap-7 md:gap-[3.75rem] bg-base-white dark:bg-base-black">
<ImageCard className="hidden sm:block -my-[4.375rem] flex-shrink-0">
<IconGolub />
</ImageCard>
<div>
<h1 className="title-lg">Authentication</h1>
<FormAuth />
<ButtonThemeToggle />
</div>
</div>
</Layout>
Expand Down

0 comments on commit 3384f37

Please sign in to comment.