added tons of features
This commit is contained in:
18
components/auth/auth-header.tsx
Normal file
18
components/auth/auth-header.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
import Logo from '@/components/shared/home/logo'
|
||||
|
||||
interface HeaderProps {
|
||||
label: string
|
||||
title: string
|
||||
}
|
||||
|
||||
const AuthHeader = ({title, label}: HeaderProps) => {
|
||||
return (
|
||||
<div className='flex w-full flex-col items-center justify-center gap-y-4'>
|
||||
<Logo />
|
||||
<h1 className='text-3xl font-semibold'>{title}</h1>
|
||||
<p className='text-sm text-muted-foreground'>{label}</p>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
export default AuthHeader
|
||||
Reference in New Issue
Block a user