Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 2 additions & 13 deletions app/components/ProductPillars.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,6 @@ const pillars = [
body:
"Invoice Pilot will turn quotes and time into clean invoices and follow-ups. Coming soon — same happy-automations posture as the rest of the stack.",
},
{
id: "subnet-signal",
label: "Subnet Signal",
title: "Ecosystem intelligence",
body:
"Subnet Signal surfaces subnet-wide signals—attention, sentiment, and activity—so you can see what the market is pricing before the narrative catches up.",
links: [
{ href: "https://subnetsignal.com", label: "Open Subnet Signal" },
{ href: "https://x.com/subnet_signal", label: "X Agent" },
],
},
];

export function ProductPillars() {
Expand All @@ -48,10 +37,10 @@ export function ProductPillars() {
What we build
</h2>
<p className="mt-3 font-sans text-base leading-relaxed text-zinc-400 md:text-lg">
Four product lines—one operating posture: ship infra and tools that stay honest under real-world pressure.
Three product lines—one operating posture: ship infra and tools that stay honest under real-world pressure.
</p>
</div>
<ul className="grid gap-6 sm:grid-cols-2 md:gap-8 lg:grid-cols-4">
<ul className="grid gap-6 sm:grid-cols-2 md:gap-8 lg:grid-cols-3">
{pillars.map((pillar, i) => (
<li
key={pillar.id}
Expand Down
24 changes: 0 additions & 24 deletions app/components/StartHereCards.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,30 +9,6 @@ export function StartHereCards() {

return (
<div className="mt-6 grid gap-4 md:grid-cols-2">
<div className={cardClass}>
<p className="font-semibold text-white">Subnet Signal</p>
<p className="mt-1 text-sm leading-relaxed text-zinc-300">
Bittensor tooling for operators who want signal, not noise.
</p>
<div className="mt-4 flex flex-col gap-2">
<a
href="https://subnetsignal.com"
target="_blank"
rel="noopener noreferrer"
className="text-sm font-medium text-zinc-200 underline-offset-4 hover:text-white hover:underline focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-white/60"
>
Open Subnet Signal
</a>
<a
href="https://x.com/subnet_signal"
target="_blank"
rel="noopener noreferrer"
className="text-sm font-medium text-zinc-200 underline-offset-4 hover:text-white hover:underline focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-white/60"
>
X Agent
</a>
</div>
</div>
<button type="button" className={cardClass} onClick={() => showToast("Coming soon")}>
<p className="font-semibold text-white">Invoice Pilot</p>
<p className="mt-1 text-sm leading-relaxed text-zinc-300">
Expand Down