Update Research Labs card styling and links

cgen-9bab4024da4c4dd59eaedcad974a2ffd
This commit is contained in:
Builder.io 2025-10-03 23:39:32 +00:00
parent f1f288f708
commit ee96363399

View file

@ -24,6 +24,7 @@ import {
Target, Target,
Users, Users,
TrendingUp, TrendingUp,
Microscope,
} from "lucide-react"; } from "lucide-react";
export default function Index() { export default function Index() {
@ -292,14 +293,28 @@ export default function Index() {
</CardContent> </CardContent>
</Card> </Card>
<Card className="bg-card/50 border-border/50 hover:border-aethex-400/50 transition-all hover-lift"> <Card className="border border-yellow-400/40 bg-black/80 text-yellow-100 shadow-[0_0_20px_rgba(250,204,21,0.15)] transition-all hover:-translate-y-1 hover:border-yellow-300">
<CardHeader> <CardHeader className="space-y-2">
<CardTitle>Research Labs</CardTitle> <CardTitle className="flex items-center gap-2 text-lg">
<CardDescription>Innovation and R&D</CardDescription> <Microscope className="h-5 w-5 text-yellow-300" />
AeThex Labs
</CardTitle>
<CardDescription className="text-yellow-100/70">
BlackSite R&D portal synced with Labs mainframe
</CardDescription>
</CardHeader> </CardHeader>
<CardContent> <CardContent className="space-y-3">
<Button asChild className="w-full"> <Button asChild className="w-full bg-yellow-400 text-black hover:bg-yellow-300">
<Link to="/research">Learn More</Link> <Link to="/research">Open Interface</Link>
</Button>
<Button
asChild
variant="outline"
className="w-full border-yellow-400/60 text-yellow-200 hover:bg-yellow-500/10"
>
<a href="https://labs.aethex.biz" target="_blank" rel="noreferrer">
Visit labs.aethex.biz
</a>
</Button> </Button>
</CardContent> </CardContent>
</Card> </Card>