You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
claude:feat: rewrite about page with B2B-focused infrastructure pitch
Replaces the prior who-are-we summary with sections targeted at protocols,
custodians, and funds — covering audiences, stack, and value props in the
shared container-inner card style.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
StakeCore operates validator and protocol-signing infrastructure for the
44
+
Flare, Avalanche, and Songbird networks. Protocols, custodians, and
45
+
treasuries delegate their FLR, AVAX, and SGB to us — earning rewards
46
+
with a risk profile equivalent to simply holding the asset.
47
+
</p>
48
+
</div>
49
+
</SlideUp>
50
+
</div>
51
+
</div>
52
+
</div>
53
+
</div>
54
+
</section>
55
+
)
56
+
57
+
58
+
constaudiences=[
59
+
{
60
+
icon: <RiBuilding4Linesize={48}/>,
61
+
title: 'Protocols & Foundations',
62
+
body: 'Make your native treasury productive. Earn rewards on the same tokens that secure your network, without giving up custody or introducing new counterparties.',
63
+
},
64
+
{
65
+
icon: <RiBankLinesize={48}/>,
66
+
title: 'Custodians, Exchanges & Wallets',
67
+
body: 'Offer staking yield to your end users on Flare, Avalanche, and Songbird. Non-custodial delegation means client tokens stay in client wallets — you pass through the rewards.',
68
+
},
69
+
{
70
+
icon: <RiBriefcase4Linesize={48}/>,
71
+
title: 'Funds, Treasuries & Family Offices',
72
+
body: 'Put idle FLR, AVAX, or SGB to work. No bridges, no synthetic wrappers, no smart-contract surface — just direct delegation to validators we run ourselves.',
73
+
},
74
+
]
75
+
76
+
77
+
constAudiences=()=>(
78
+
<sectionclassName="services-area">
79
+
<divclassName="container">
80
+
<divclassName="container-inner">
81
+
<divclassName="row">
82
+
<divclassName="col-xl-12 col-lg-12">
83
+
<SlideUp>
84
+
<divclassName="section-title text-center">
85
+
<p>Who we serve</p>
86
+
<h2>Built for crypto-native businesses</h2>
87
+
</div>
88
+
</SlideUp>
89
+
</div>
90
+
</div>
91
+
<divclassName="row">
92
+
{audiences.map(({ icon, title, body },i)=>(
93
+
<divkey={i}className="col-lg-4 col-md-6">
94
+
<SlideUpdelay={i+1}>
95
+
<divclassName="service-item">
96
+
{icon}
97
+
<h4>{title}</h4>
98
+
<p>{body}</p>
99
+
</div>
100
+
</SlideUp>
101
+
</div>
102
+
))}
103
+
</div>
104
+
</div>
105
+
</div>
106
+
</section>
107
+
)
108
+
109
+
110
+
conststack=[
111
+
{
112
+
icon: <RiServerLinesize={36}/>,
113
+
title: 'Validator nodes',
114
+
body: 'Snowball consensus participation on Avalanche and Flare. Redundant deployments across regions.',
115
+
},
116
+
{
117
+
icon: <RiNodeTreesize={36}/>,
118
+
title: 'FSP & SSP signers',
119
+
body: 'Flare Systems Protocol and Songbird Systems Protocol signing infrastructure with sub-epoch reliability targets.',
120
+
},
121
+
{
122
+
icon: <RiPulseLinesize={36}/>,
123
+
title: '24/7 monitoring',
124
+
body: 'Automated alerting, on-call rotation, and a transparent uptime record published live on this site.',
125
+
},
126
+
]
127
+
128
+
129
+
constStack=()=>(
130
+
<sectionclassName="services-area">
131
+
<divclassName="container">
132
+
<divclassName="container-inner">
133
+
<divclassName="row">
134
+
<divclassName="col-xl-12 col-lg-12">
135
+
<SlideUp>
136
+
<divclassName="section-title text-center">
137
+
<p>What we run</p>
138
+
<h2>The full consensus stack</h2>
139
+
</div>
140
+
</SlideUp>
141
+
</div>
142
+
</div>
143
+
<divclassName="row">
144
+
{stack.map(({ icon, title, body },i)=>(
145
+
<divkey={i}className="col-lg-4 col-md-6">
146
+
<SlideUpdelay={i+1}>
147
+
<divclassName="service-item">
148
+
{icon}
149
+
<h4>{title}</h4>
150
+
<p>{body}</p>
151
+
</div>
152
+
</SlideUp>
153
+
</div>
154
+
))}
155
+
</div>
156
+
</div>
157
+
</div>
158
+
</section>
159
+
)
160
+
161
+
162
+
constvalueProps=[
163
+
{
164
+
icon: <RiShieldCheckLinesize={44}/>,
165
+
title: 'Risk-equivalent to holding the asset',
166
+
body: 'Delegated tokens never leave your wallet. No smart contracts in the path, no bridges, no liquid-staking derivative. The only risk you take on is the same risk you took when you bought the token.',
167
+
},
168
+
{
169
+
icon: <RiLineChartLinesize={44}/>,
170
+
title: 'Transparent, on-chain reporting',
171
+
body: 'Live delegation totals, reward history, and uptime are published on this site — no NDA, no quarterly PDF. Verify everything yourself, on-chain, at any time.',
172
+
},
173
+
{
174
+
icon: <RiPulseLinesize={44}/>,
175
+
title: 'Multi-network, multi-protocol coverage',
176
+
body: 'One counterparty across Flare, Avalanche, and Songbird, and across both validator and FSP/SSP roles. One contract, one onboarding, one point of contact.',
177
+
},
178
+
{
179
+
icon: <RiServerLinesize={44}/>,
180
+
title: 'Direct support from the engineers',
181
+
body: 'Institutional partners get a direct line to the team running the nodes. Integration questions, custom reporting, reward routing — handled by the people who actually built it.',
0 commit comments