2022-09-09 11:53:35 +00:00
|
|
|
import type { Author } from '../../graphql/types.gen'
|
|
|
|
import { AuthorCard } from './Card'
|
|
|
|
import './Full.scss'
|
|
|
|
|
2022-10-28 21:21:47 +00:00
|
|
|
export const AuthorFull = (props: { author: Author }) => {
|
2022-09-09 11:53:35 +00:00
|
|
|
return (
|
2022-11-20 22:10:07 +00:00
|
|
|
<div class="row">
|
2023-03-10 17:42:48 +00:00
|
|
|
<div class="col-md-18 col-lg-16 user-details">
|
2022-11-20 22:10:07 +00:00
|
|
|
<AuthorCard author={props.author} compact={false} isAuthorPage={true} />
|
2022-09-09 11:53:35 +00:00
|
|
|
</div>
|
2022-10-04 12:42:11 +00:00
|
|
|
</div>
|
2022-09-09 11:53:35 +00:00
|
|
|
)
|
|
|
|
}
|