fix: tighten featured agent card stack — only shift the bottom card to clear smith k experience line
This commit is contained in:
@@ -105,10 +105,10 @@ export function FeaturesSection({ content }: { content?: FeaturesContent }) {
|
|||||||
|
|
||||||
{/* Right Side - Agent Cards (Desktop) */}
|
{/* Right Side - Agent Cards (Desktop) */}
|
||||||
{agents.length > 0 && (
|
{agents.length > 0 && (
|
||||||
<div className="lg:w-1/2 relative min-h-[870px] hidden lg:block">
|
<div className="lg:w-1/2 relative min-h-[760px] hidden lg:block">
|
||||||
{agents[0] && <AgentCard agent={agents[0]} className="absolute top-0 left-0 shadow-lg z-10" />}
|
{agents[0] && <AgentCard agent={agents[0]} className="absolute top-0 left-0 shadow-lg z-10" />}
|
||||||
{agents[1] && <AgentCard agent={agents[1]} className="absolute top-[350px] right-0 shadow-lg z-20" />}
|
{agents[1] && <AgentCard agent={agents[1]} className="absolute top-[170px] right-0 shadow-lg z-20" />}
|
||||||
{agents[2] && <AgentCard agent={agents[2]} className="absolute top-[500px] left-[60px] shadow-lg z-30" />}
|
{agents[2] && <AgentCard agent={agents[2]} className="absolute top-[380px] left-[60px] shadow-lg z-30" />}
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user