Skip to content

Commit 7f360a2

Browse files
Add previous tools panel to home
Added a new "previous tools" section on the home page under Active Tools, displaying a list of past tools in a subdued style to de-emphasize them compared to current tools. X-Lovable-Edit-ID: edt-eb9b3d0a-97e8-4e84-8b06-074e3408bfab
2 parents b18a98c + 6402557 commit 7f360a2

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

src/pages/Index.tsx

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,34 @@ const Index = () => {
7171
))}
7272
</ul>
7373
</div>
74+
75+
{/* Previous Tools */}
76+
<div className="mt-8">
77+
<h2 className="font-mono-display text-sm font-medium tracking-widest text-foreground/30 drop-shadow-sm">
78+
previous tools
79+
</h2>
80+
<ul className="mt-2 columns-2 gap-x-8 space-y-1">
81+
{[
82+
"farsight",
83+
"aegis",
84+
"co-audit",
85+
"prism",
86+
"echolab",
87+
"sentinel",
88+
"lattice",
89+
"veil",
90+
"neutrino",
91+
"axiom",
92+
].map((tool) => (
93+
<li
94+
key={tool}
95+
className="font-mono-display text-sm tracking-wide text-foreground/30"
96+
>
97+
{tool}
98+
</li>
99+
))}
100+
</ul>
101+
</div>
74102
</div>
75103
</main>
76104
</div>

0 commit comments

Comments
 (0)