We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b18a98c commit 6402557Copy full SHA for 6402557
1 file changed
src/pages/Index.tsx
@@ -71,6 +71,34 @@ const Index = () => {
71
))}
72
</ul>
73
</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>
102
103
</main>
104
0 commit comments