2022-09-09 11:53:35 +00:00
|
|
|
import type { Author } from '../../graphql/types.gen'
|
|
|
|
import { AuthorCard } from './Card'
|
|
|
|
import './Full.scss'
|
|
|
|
|
|
|
|
export default (props: { author: Author }) => {
|
|
|
|
return (
|
2022-10-04 12:42:11 +00:00
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
|
|
|
<div class="user-details">
|
2022-10-14 18:33:06 +00:00
|
|
|
<AuthorCard author={props.author} compact={false} isAuthorPage={true} />
|
2022-09-09 11:53:35 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2022-10-04 12:42:11 +00:00
|
|
|
</div>
|
2022-09-09 11:53:35 +00:00
|
|
|
)
|
|
|
|
}
|