Remove Offerings Overview from home

cgen-d25ebd5cd65644d2926baf1492d52845
This commit is contained in:
Builder.io 2025-10-18 00:50:15 +00:00
parent 04847bdb94
commit 81bc5a7b13

View file

@ -320,116 +320,6 @@ export default function Index() {
</section>
{/* Offerings Overview */}
<section className="py-16 sm:py-20">
<div className="container mx-auto px-4">
<div className="text-center mb-12">
<h2 className="text-3xl lg:text-4xl font-bold text-gradient">
Everything We Offer
</h2>
<p className="text-muted-foreground mt-2">
Explore services, programs, resources, and community
</p>
</div>
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6">
{serviceOfferings.map((offering) => (
<Card
key={offering.title}
className={`relative overflow-hidden border transition-all duration-500 group hover:-translate-y-1 ${offering.cardClass}`}
>
<div className="pointer-events-none absolute inset-0 bg-gradient-to-br from-white/10 via-transparent to-transparent opacity-0 group-hover:opacity-40 transition-opacity duration-500" />
<CardHeader className="relative space-y-2">
<CardTitle className={`text-lg ${offering.titleClass}`}>
{offering.title}
</CardTitle>
<CardDescription className={`text-sm ${offering.descriptionClass}`}>
{offering.description}
</CardDescription>
</CardHeader>
<CardContent className="relative pt-2">
<Button asChild className={`w-full ${offering.buttonClass}`}>
<Link to={offering.link}>Learn More</Link>
</Button>
</CardContent>
</Card>
))}
<Card className="relative overflow-hidden border border-yellow-400/40 bg-black/80 text-yellow-100 shadow-[0_0_20px_rgba(250,204,21,0.15)] transition-all duration-500 hover:-translate-y-1 hover:border-yellow-300 group">
<div className="pointer-events-none absolute inset-0 bg-gradient-to-br from-yellow-500/10 via-transparent to-transparent opacity-0 group-hover:opacity-40 transition-opacity duration-500" />
<CardHeader className="relative space-y-2">
<CardTitle className="flex items-center gap-2 text-lg">
<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>
<CardContent className="relative space-y-3">
<Button
asChild
className="w-full bg-yellow-400 text-black hover:bg-yellow-300 shadow-[0_0_18px_rgba(250,204,21,0.25)]"
>
<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>
</CardContent>
</Card>
</div>
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6 mt-6">
{resourceOfferings.map((offering) => (
<Card
key={offering.title}
className={`relative overflow-hidden border transition-all duration-500 group hover:-translate-y-1 ${offering.cardClass}`}
>
<div className="pointer-events-none absolute inset-0 bg-gradient-to-br from-white/10 via-transparent to-transparent opacity-0 group-hover:opacity-35 transition-opacity duration-500" />
<CardHeader className="relative space-y-2">
<CardTitle className={`text-lg ${offering.titleClass}`}>
{offering.title}
</CardTitle>
<CardDescription className={`text-sm ${offering.descriptionClass}`}>
{offering.description}
</CardDescription>
</CardHeader>
<CardContent className="relative">
<div className="flex flex-wrap gap-2">
{offering.actions.map((action) => (
<Button
key={action.label}
asChild
variant={action.variant}
className={`flex-1 min-w-[120px] ${action.buttonClass}`}
>
{action.external ? (
<a href={action.href} target="_blank" rel="noreferrer">
{action.label}
</a>
) : (
<Link to={action.href}>{action.label}</Link>
)}
</Button>
))}
</div>
</CardContent>
</Card>
))}
</div>
</div>
</section>
{/* Technology Showcase */}
<section className="py-16 sm:py-20 relative overflow-hidden">