Skip to content

Commit f940783

Browse files
Add Active Tools panel
Added a simple Active Tools panel to the home page, listing tools as a text list under a new "active tools" section. The panel appears below the existing hero content and uses the provided tool names. X-Lovable-Edit-ID: edt-f700c08c-89e5-4ca2-9526-d18517cc2e48
2 parents 5c2ccdb + 3bfb1f3 commit f940783

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

src/pages/Index.tsx

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,23 @@ const Index = () => {
4343
privacy × security × trust.
4444
</p>
4545
</div>
46+
47+
{/* Active Tools */}
48+
<div className="mt-10">
49+
<h2 className="font-mono-display text-sm font-medium uppercase tracking-widest text-foreground/50 drop-shadow-sm">
50+
active tools
51+
</h2>
52+
<ul className="mt-3 space-y-1.5">
53+
{["farsight", "aegis", "co-audit", "prism", "echolab"].map((tool) => (
54+
<li
55+
key={tool}
56+
className="font-mono-display text-base tracking-wide text-foreground/70 drop-shadow-sm"
57+
>
58+
{tool}
59+
</li>
60+
))}
61+
</ul>
62+
</div>
4663
</div>
4764
</main>
4865
</div>

0 commit comments

Comments
 (0)