Skip to content

Commit

Permalink
update imports
Browse files Browse the repository at this point in the history
  • Loading branch information
firehawk89 committed Feb 1, 2024
1 parent 65913c7 commit d0617ef
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/app/auth/page.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import FormAuth from '@/components/pages/auth/form-auth'
import AuthForm from '@/components/pages/auth/auth-form'
import AuthContent from '@/components/pages/auth-content'
import { Icons } from '@/components/ui/icons'
import ImageCard from '@/components/ui/image-card'
Expand All @@ -15,7 +15,7 @@ export default function Auth() {
<h1 className="title-lg">Authentication</h1>
<ThemeToggler />
</header>
<FormAuth className="mt-5" />
<AuthForm className="mt-5" />
</article>
</AuthContent>
)
Expand Down
4 changes: 2 additions & 2 deletions src/app/profile/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import AuthContent from '@/components/pages/auth-content'
import FileInput from '@/components/pages/profile/file-input'
import FormProfile from '@/components/pages/profile/form-profile'
import ProfileForm from '@/components/pages/profile/profile-form'
import ImageCard from '@/components/ui/image-card'
import { ThemeToggler } from '@/components/ui/theme-toggler'

Expand All @@ -15,7 +15,7 @@ export default function Profile() {
<h1 className="title-lg">Profile</h1>
<ThemeToggler />
</header>
<FormProfile className="mt-5" />
<ProfileForm className="mt-5" />
</article>
</AuthContent>
)
Expand Down
4 changes: 2 additions & 2 deletions src/app/verification/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import AuthContent from '@/components/pages/auth-content'
import ControlOtp from '@/components/pages/verification/control-otp'
import OtpControl from '@/components/pages/verification/otp-control'
import { Icons } from '@/components/ui/icons'
import ImageCard from '@/components/ui/image-card'
import { ThemeToggler } from '@/components/ui/theme-toggler'
Expand All @@ -15,7 +15,7 @@ export default function Verification() {
<h1 className="title-lg">Check your Email</h1>
<ThemeToggler />
</header>
<ControlOtp className="mt-5" />
<OtpControl className="mt-5" />
</article>
</AuthContent>
)
Expand Down

0 comments on commit d0617ef

Please sign in to comment.