feat: redesign agents hero section for improved visual hierarchy
- Updated layout to use centered vertical alignment with justify-center - Added semi-transparent white overlay (bg-white/30) for better text contrast - Changed text color to white and added drop shadows for improved readability - Repositioned scroll arrow to fixed bottom position for consistent placement - Removed redundant padding and margin adjustments - Updated font weight from light to normal for better legibility
This commit is contained in:
@@ -11,21 +11,24 @@ export function AgentsHeroAlt() {
|
|||||||
backgroundSize: "cover",
|
backgroundSize: "cover",
|
||||||
backgroundPosition: "center",
|
backgroundPosition: "center",
|
||||||
}}
|
}}
|
||||||
className="relative mx-auto flex min-h-screen flex-col items-center gap-6 px-4 pb-24 pt-[20vh] text-gray-800 lg:pb-0"
|
className="relative mx-auto flex min-h-screen flex-col items-center justify-center px-4 text-white"
|
||||||
>
|
>
|
||||||
<div className="text-center -mt-5">
|
<div className="absolute inset-0 bg-white/30" />
|
||||||
|
<div className="relative flex flex-col items-center gap-6">
|
||||||
|
<div className="text-center drop-shadow-lg">
|
||||||
<H2>
|
<H2>
|
||||||
<span className="">
|
<span className="">
|
||||||
Sovereign AI Agents, Coming Soon.
|
Sovereign AI Agents, Coming Soon.
|
||||||
</span>
|
</span>
|
||||||
</H2>
|
</H2>
|
||||||
</div>
|
</div>
|
||||||
<div className="max-w-4xl text-center font-light text-gray-500">
|
<div className="max-w-4xl text-center font-normal drop-shadow-lg">
|
||||||
<H5>
|
<H5>
|
||||||
Hero is the autonomous agent layer for the Mycelium platform—trusted, policy-aware AI that runs on infrastructure you control and remembers what matters.
|
Hero is the autonomous agent layer for the Mycelium platform—trusted, policy-aware AI that runs on infrastructure you control and remembers what matters.
|
||||||
</H5>
|
</H5>
|
||||||
</div>
|
</div>
|
||||||
<div className="pt-6">
|
</div>
|
||||||
|
<div className="absolute bottom-10">
|
||||||
<ScrollDownArrow />
|
<ScrollDownArrow />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user