Skip to content

Commit

Permalink
add profile page
Browse files Browse the repository at this point in the history
  • Loading branch information
dEdmishka committed Jan 28, 2024
1 parent cf0037d commit 3665f64
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/app/profile/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import FormAuth from '@/components/pages/auth/form-auth'
import FileInput from '@/components/pages/profile/file-input'
import FormProfile from '@/components/pages/profile/form-profile'
import Content from '@/components/ui/content'
import { ThemeToggler } from '@/components/ui/theme-toggler'

Expand All @@ -10,11 +10,11 @@ export default function Profile() {
<div className="p-7 sm:p-10 flex gap-7 md:gap-[3.75rem] rounded-3xl bg-base-white dark:bg-base-black">
<FileInput />
<div>
<div className="flex justify-between pb-2">
<h1 className="title-lg">Authentication</h1>
<div className="flex justify-between pb-2 mt-8">
<h1 className="title-lg">Profile</h1>
<ThemeToggler />
</div>
<FormAuth className="mt-5" />
<FormProfile className="mt-5" />
</div>
</div>
</Content>
Expand Down

0 comments on commit 3665f64

Please sign in to comment.