Better org pages
This commit is contained in:
parent
cb14236f98
commit
935b3b3787
1 changed files with 7 additions and 5 deletions
|
@ -36,20 +36,22 @@ export default function Page({
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<div className='grid grid-cols-1 max-w-3xl mx-auto'>
|
<div className='grid grid-cols-1 max-w-3xl mx-auto'>
|
||||||
<div className='mx-auto mb-4 max-w-3xl md:w-auto md:h-[40vw] lg:h-[20vw]'>
|
<div className='mx-auto mb-4 max-w-3xl md:w-auto md:h-[40vw] lg:h-[20vw] rounded-lg shadow-lg shadow-slate-400'>
|
||||||
<img
|
<img
|
||||||
alt='profile picture'
|
alt='profile'
|
||||||
className='rounded-sm mx-auto object-cover w-full h-full shadow-md shadow-slate-400'
|
className='rounded-lg mx-auto p-8 object-cover w-full h-full'
|
||||||
src={image}
|
src={image}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<span className={`${zillaSlab.className} font-bold text-4xl text-left`}>
|
<br />
|
||||||
|
<span className={`${zillaSlab.className} font-bold text-4xl text-center`}>
|
||||||
{name}
|
{name}
|
||||||
</span>
|
</span>
|
||||||
<div className='text-slate-600 text-2xl mt-4'>{short}</div>
|
<div className='text-slate-600 text-2xl mt-4 text-center'>{short}</div>
|
||||||
</div>
|
</div>
|
||||||
<div className='max-w-3xl mx-auto grid grid-cols-1'>
|
<div className='max-w-3xl mx-auto grid grid-cols-1'>
|
||||||
<hr className='mx-auto w-full h-1 border-0 bg-slate-200 my-2 rounded-md' />
|
<hr className='mx-auto w-full h-1 border-0 bg-slate-200 my-2 rounded-md' />
|
||||||
|
<br />
|
||||||
<Description />
|
<Description />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue