Skip to content

Commit 9743dfa

Browse files
feat: improve introduction
1 parent d8285a5 commit 9743dfa

File tree

9 files changed

+235
-38
lines changed

9 files changed

+235
-38
lines changed

docs/cloud/introduction.mdx

Lines changed: 68 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -9,43 +9,83 @@ description: ""
99
import QuickstartIcon from '@site/static/img/icons/quickstart.svg';
1010
import PrivateInferenceIcon from '@site/static/img/icons/private-inference.svg';
1111
import VerificationIcon from '@site/static/img/icons/verification.svg';
12+
import VerifiedPrivateIcon from '@site/static/img/icons/verified-private.svg';
13+
import UnifiedApiIcon from '@site/static/img/icons/unified-api.svg';
14+
import PaymentsIcon from '@site/static/img/icons/payments.svg';
15+
import { FeatureCard, FeatureCardGrid } from '@site/src/components/FeatureCard';
1216

13-
NEAR AI Cloud is the platform where AI runs on your terms — fully private, verifiable, and user-owned.
14-
Deploy and scale powerful language models on TEE-enabled GPUs with on-chain guarantees. Built for the
15-
age of agentic AI, NEAR AI Cloud gives your models the power to act, reason, and transact — while you
16-
retain complete control over the stack.
17+
**Run AI models with complete privacy.** NEAR AI Cloud delivers verifiable private inference through hardware-enforced security, giving you access to leading AI models without compromising your data. Built on Trusted Execution Environments (TEEs) and blockchain verification, your computations remain private, tamper-proof, and under your control.
1718

18-
NEAR AI Cloud provides:
19-
20-
- **Unified API for AI Models**: Access leading AI models like DeepSeek, Llama, OpenAI, Qwen and more through a single API
21-
- **Private Inference**: All AI computations run in Trusted Execution Environments (TEEs) ensuring end-to-end privacy and verifiability
22-
- **Flexible Payments**: Top up or pay as you go
19+
## Why NEAR AI Cloud?
2320

21+
<div className="feature-highlight">
22+
<div className="feature-highlight-icon">
23+
<VerifiedPrivateIcon />
24+
</div>
25+
<div className="feature-highlight-content">
26+
<h3>Verifiable Private Inference</h3>
27+
<p>All AI computations run privately and securely in Trusted Execution Environments (TEEs) ensuring no one can access your data. </p>
28+
</div>
29+
</div>
2430

25-
<div className="doc-feature-grid">
26-
<a className="doc-feature-card" href="./quickstart">
27-
<div className="doc-feature-icon">
28-
<QuickstartIcon />
31+
<div className="feature-highlights">
32+
<div className="feature-highlight">
33+
<div className="feature-highlight-icon">
34+
<UnifiedApiIcon />
2935
</div>
30-
<h3>Quick Start</h3>
31-
<p>Start building private, verifiable AI in minutes</p>
32-
</a>
33-
<a className="doc-feature-card" href="./private-inference">
34-
<div className="doc-feature-icon">
35-
<PrivateInferenceIcon />
36+
<div className="feature-highlight-content">
37+
<h3>Unified API for AI Models</h3>
38+
<p>Access leading AI models like DeepSeek, Llama, OpenAI, Qwen and more through a single, streamlined API</p>
3639
</div>
37-
<h3>Private Inference</h3>
38-
<p> Learn about the secure architecture and how your data is protected</p>
39-
</a>
40-
<a className="doc-feature-card" href="./verification">
41-
<div className="doc-feature-icon">
42-
<VerificationIcon />
40+
</div>
41+
42+
<div className="feature-highlight">
43+
<div className="feature-highlight-icon">
44+
<PaymentsIcon />
4345
</div>
44-
<h3>Verification</h3>
45-
<p> Understand how to verify and validate secure interactions with AI models</p>
46-
</a>
46+
<div className="feature-highlight-content">
47+
<h3>Flexible Payments</h3>
48+
<p>Top up or pay as you go with seamless payment options that scale with your needs</p>
49+
</div>
50+
</div>
4751
</div>
4852

53+
## Why Trusted Execution Environments?
54+
55+
Trusted Execution Environments (TEEs) are encrypted secure areas inside CPUs and GPUs that run code and process data in complete isolation. Think of them as secure vaults within the hardware itself.
56+
57+
**What makes TEEs secure:**
58+
- **Isolated Processing**: Data inside the TEE cannot be seen by the host OS, other applications, or even cloud infrastructure providers
59+
- **Tamper-Proof**: Code and data inside the TEE cannot be modified or intercepted
60+
- **Verifiable**: You can cryptographically verify that the TEE is genuine and model requests are processed in that secure environment.
61+
62+
## Your Data Stays Yours
63+
64+
With NEAR AI Cloud, your data remains truly private. Model providers, cloud infrastructure providers, and NEAR itself cannot see, access, mine, or use your data to train models. You get the power of leading AI models — like DeepSeek, Llama, OpenAI, and Qwen — with absolute confidence in your data privacy.
65+
66+
## Get Started
67+
68+
<FeatureCardGrid>
69+
<FeatureCard
70+
icon={QuickstartIcon}
71+
title="Quick Start"
72+
description="Start building private, verifiable AI in minutes"
73+
href="./quickstart"
74+
/>
75+
<FeatureCard
76+
icon={PrivateInferenceIcon}
77+
title="Private Inference"
78+
description="Learn about the secure architecture and how your data is protected"
79+
href="./private-inference"
80+
/>
81+
<FeatureCard
82+
icon={VerificationIcon}
83+
title="Verification"
84+
description="Understand how to verify and validate secure interactions with AI models"
85+
href="./verification"
86+
/>
87+
</FeatureCardGrid>
88+
4989
<div className="doc-beta-banner" role="note" aria-label="Beta release">
5090
<div className="doc-beta-badge">Beta</div>
5191
<div className="doc-beta-content">

docs/cloud/quickstart.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import { FeatureCard, FeatureCardGrid } from '@site/src/components/FeatureCard';
1515

1616
# NEAR AI Cloud Quickstart
1717

18-
[NEAR AI Cloud](https://cloud.near.ai) offers developers access to private, verifiable AI models through a unified API. This guide will walk you through setting up your account, creating API keys, and making your first requests.
18+
[NEAR AI Cloud](https://cloud.near.ai) offers developers access to secure, private, verifiable AI models through a unified API. This quickstart guide will walk you through creating an account and making your first requests in minutes.
1919

2020
## Setup
2121

docs/cloud/verification/index.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,11 @@ slug: /cloud/verification
66
description: ""
77
---
88

9-
# Verification
10-
119
[NEAR AI Cloud](https://cloud.near.ai) operates in Trusted Execution Environments (TEEs) which use cryptographic proofs to verify that your private AI conversations actually happened in secure, isolated environments - not on compromised systems or with unauthorized access.
1210

1311
This section will show you step-by-step processes for checking these proofs, validating digital signatures, and confirming that your AI interactions haven't been tampered with.
1412

15-
---
16-
17-
## Overview
18-
19-
### How NEAR AI Cloud Verification Works:
13+
## How NEAR AI Cloud Verification Works
2014

2115
1. **Secure Key Generation:** When NEAR AI Cloud initializes, it generates a unique cryptographic signing key pair inside the Trusted Execution Environment (TEE). The private key never leaves the secure hardware.
2216

sidebars.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ const sidebars = {
1818
docsSidebar: [
1919
'cloud/introduction',
2020
'cloud/quickstart',
21-
'cloud/private-inference',
2221
'cloud/models',
22+
'cloud/private-inference',
2323
{
2424
type: 'category',
2525
label: 'Verification',

src/css/custom.css

Lines changed: 121 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -347,6 +347,127 @@ table {
347347
color: var(--ifm-color-content);
348348
}
349349

350+
/* Feature highlights section */
351+
.feature-highlights {
352+
display: flex;
353+
flex-direction: column;
354+
gap: 2rem;
355+
margin: 2rem 0 3.5rem;
356+
padding: 0;
357+
}
358+
359+
.feature-highlight {
360+
display: flex;
361+
align-items: flex-start;
362+
gap: 1.5rem;
363+
padding: 0;
364+
transition: opacity 0.2s ease;
365+
}
366+
367+
.feature-highlight:hover {
368+
opacity: 1;
369+
}
370+
371+
.feature-highlight-icon {
372+
display: flex;
373+
align-items: center;
374+
justify-content: center;
375+
width: 64px;
376+
height: 64px;
377+
border-radius: 16px;
378+
background: rgba(59, 130, 246, 0.1);
379+
font-size: 32px;
380+
flex-shrink: 0;
381+
transition: transform 0.3s ease, background 0.3s ease;
382+
}
383+
384+
.feature-highlight-icon svg {
385+
width: 32px;
386+
height: 32px;
387+
stroke: #60a5fa;
388+
color: #60a5fa;
389+
fill: none;
390+
}
391+
392+
/* Inline list item icons should match text color for visibility */
393+
.markdown li svg {
394+
width: 1em;
395+
height: 1em;
396+
vertical-align: middle;
397+
margin-right: 0.25em;
398+
stroke: currentColor;
399+
}
400+
401+
html[data-theme='light'] .feature-highlight-icon {
402+
background: rgba(59, 130, 246, 0.08);
403+
}
404+
405+
[data-theme='dark'] .feature-highlight-icon {
406+
background: rgba(96, 165, 250, 0.12);
407+
}
408+
409+
.feature-highlight:hover .feature-highlight-icon {
410+
transform: scale(1.05);
411+
background: rgba(59, 130, 246, 0.16);
412+
}
413+
414+
html[data-theme='light'] .feature-highlight:hover .feature-highlight-icon {
415+
background: rgba(59, 130, 246, 0.14);
416+
}
417+
418+
[data-theme='dark'] .feature-highlight:hover .feature-highlight-icon {
419+
background: rgba(96, 165, 250, 0.18);
420+
}
421+
422+
.feature-highlight-content {
423+
flex: 1;
424+
display: flex;
425+
flex-direction: column;
426+
gap: 0.5rem;
427+
padding-top: 0.25rem;
428+
}
429+
430+
.feature-highlight-content h3 {
431+
margin: 0;
432+
font-size: 1.25rem;
433+
font-weight: 600;
434+
line-height: 1.3;
435+
color: var(--ifm-heading-color);
436+
}
437+
438+
.feature-highlight-content p {
439+
margin: 0;
440+
font-size: 1rem;
441+
line-height: 1.7;
442+
color: var(--ifm-color-content);
443+
opacity: 0.85;
444+
}
445+
446+
@media screen and (max-width: 768px) {
447+
.feature-highlights {
448+
gap: 1.75rem;
449+
margin: 1.5rem 0 2.5rem;
450+
}
451+
452+
.feature-highlight {
453+
gap: 1.25rem;
454+
}
455+
456+
.feature-highlight-icon {
457+
width: 56px;
458+
height: 56px;
459+
font-size: 28px;
460+
}
461+
462+
.feature-highlight-content h3 {
463+
font-size: 1.125rem;
464+
}
465+
466+
.feature-highlight-content p {
467+
font-size: 0.9375rem;
468+
}
469+
}
470+
350471
.doc-feature-grid {
351472
display: grid;
352473
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));

src/pages/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ function HomepageHeader() {
3030
<div className={styles.buttons}>
3131
<Link
3232
className="button button--secondary button--lg"
33-
to="quickstart"
33+
to="/cloud/quickstart"
3434
>
3535
Start Building
3636
</Link>

static/img/icons/payments.svg

Lines changed: 11 additions & 0 deletions
Loading

static/img/icons/unified-api.svg

Lines changed: 16 additions & 0 deletions
Loading
Lines changed: 15 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)