Skip to content

Commit 4d0e5c5

Browse files
committed
fix agentsdetails
1 parent 9a6cf5b commit 4d0e5c5

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

pages/agents/[agent].tsx

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,10 +82,17 @@ const AgentPage = ({agent}: {agent: Agent}) => {
8282
}
8383
{...config}/>
8484
</div>
85-
<h1 className="text-3xl font-bold mt-4">
85+
<div className='mt-1'>
86+
<h1 className="text-3xl font-bold ">
8687
{
8788
agent ?. title.split(' ').map(word => word.charAt(0).toUpperCase() + word.slice(1).toLowerCase()).join(' ')
8889
}</h1>
90+
<h1 className="text-sm">
91+
{
92+
agent ?.description
93+
}</h1>
94+
</div>
95+
8996
</div>
9097

9198
<div>

0 commit comments

Comments
 (0)