adjust profile layout
This commit is contained in:
parent
2a200f7088
commit
7eaa3b997b
2 changed files with 12 additions and 9 deletions
|
@ -1,3 +1,6 @@
|
||||||
{
|
{
|
||||||
"extends": "next/core-web-vitals"
|
"extends": "next/core-web-vitals",
|
||||||
|
"rules": {
|
||||||
|
"@next/next/no-img-element": "off"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -29,6 +29,12 @@ export default function Page({
|
||||||
<Link href={`/affiliation/${mainAffiliationShort}`}>
|
<Link href={`/affiliation/${mainAffiliationShort}`}>
|
||||||
{mainAffiliation.name}
|
{mainAffiliation.name}
|
||||||
</Link>
|
</Link>
|
||||||
|
|
||||||
|
{authorData.website ? (
|
||||||
|
<div className='mt-2'>
|
||||||
|
Visit at: <a href={authorData.website}>{authorData.website}</a>
|
||||||
|
</div>
|
||||||
|
) : null}
|
||||||
</>
|
</>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
@ -100,12 +106,6 @@ export default function Page({
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<h1 className='text-3xl md:my-6 my-4 font-serif'>Bio:</h1>
|
<h1 className='text-3xl md:my-6 my-4 font-serif'>Bio:</h1>
|
||||||
{authorData.website ? (
|
|
||||||
<h2 className='mb-4 text-lg'>
|
|
||||||
You can visit me at:{' '}
|
|
||||||
<a href={authorData.website}>{authorData.website}</a>
|
|
||||||
</h2>
|
|
||||||
) : null}
|
|
||||||
<p>{authorData.bio}</p>
|
<p>{authorData.bio}</p>
|
||||||
</>
|
</>
|
||||||
)
|
)
|
||||||
|
@ -122,14 +122,14 @@ export default function Page({
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<div className='grid grid-cols-1 grid-rows-2 mx-auto gap-y-3 sm:max-w-[60vw]'>
|
<div>
|
||||||
<span
|
<span
|
||||||
className={`${zillaSlab.className} font-bold text-5xl text-center md:text-left`}
|
className={`${zillaSlab.className} font-bold text-5xl text-center md:text-left`}
|
||||||
>
|
>
|
||||||
{name.first}
|
{name.first}
|
||||||
{name.nickname ? ` "${name.nickname}"` : null} {name.last}
|
{name.nickname ? ` "${name.nickname}"` : null} {name.last}
|
||||||
</span>
|
</span>
|
||||||
<div className='text-slate-600 text-md sm:text-lg'>
|
<div className='text-slate-600 text-md sm:text-lg mt-4'>
|
||||||
<MainPosition />
|
<MainPosition />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue