Skip to content

Commit 0ff33a4

Browse files
authored
feat: add personna (#110)
1 parent 2fea3db commit 0ff33a4

File tree

2 files changed

+23
-5
lines changed

2 files changed

+23
-5
lines changed

.vitepress/config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export default withMermaid(
1818
title: 'iExec Documentation',
1919
titleTemplate: ':title | PoCo Documentation',
2020
description:
21-
'Build decentralized applications that combine ownership, privacy, and monetization.',
21+
'Build on a programmable privacy stack: TEE-secured off-chain computation and confidential on-chain smart contracts.',
2222
cleanUrls: true,
2323
lastUpdated: true,
2424
vite: {
@@ -59,7 +59,7 @@ export default withMermaid(
5959
'link',
6060
{
6161
rel: 'stylesheet',
62-
href: 'https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap',
62+
href: 'https://fonts.googleapis.com/css2?family=Mulish:wght@400;600;700;800&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap',
6363
},
6464
],
6565
[

src/components/HomePage.vue

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ const protocolCards = [
2828
icon: noxIcon,
2929
title: 'Nox Protocol',
3030
subtitle: 'Confidential DeFi',
31+
persona:
32+
"I'm a Solidity developer and I want to build a confidential smart contract.",
3133
description:
3234
'Nox is a privacy layer that empowers smart contracts with confidential computation. Encrypted types are executed inside Trusted Execution Environments (TEE), composable with DeFi, without ever exposing plaintext on-chain.',
3335
link: '/nox-protocol/getting-started/welcome',
@@ -37,6 +39,8 @@ const protocolCards = [
3739
icon: pocoIcon,
3840
title: 'iExec PoCo',
3941
subtitle: 'Off-chain Privacy',
42+
persona:
43+
"I'm a full-stack developer and I want to build a TEE-powered dApp.",
4044
description:
4145
'PoCo is a trust and coordination layer that secures off-chain execution in Trusted Execution Environments (TEE), enforcing correctness, privacy, and clear economic governance.',
4246
link: '/get-started/welcome',
@@ -101,8 +105,8 @@ const dappFeatures = [
101105
Privacy
102106
</h1>
103107
<p class="hero-tagline">
104-
Build, deploy, and govern confidential execution across Web3, with
105-
programmable access control and hardware-enforced computation.
108+
Build on a programmable privacy stack: TEE-secured off-chain
109+
computation and confidential on-chain smart contracts.
106110
</p>
107111
</div>
108112
<div class="hero-image-container">
@@ -136,6 +140,7 @@ const dappFeatures = [
136140
<span class="protocol-card-subtitle">{{ card.subtitle }}</span>
137141
</div>
138142
</div>
143+
<p class="protocol-card-persona">{{ card.persona }}</p>
139144
<p class="protocol-card-desc">{{ card.description }}</p>
140145
</a>
141146
</div>
@@ -245,7 +250,7 @@ const dappFeatures = [
245250
font-family: 'Mulish', sans-serif;
246251
font-size: 24px;
247252
font-weight: 400;
248-
line-height: 26px;
253+
line-height: 36px;
249254
letter-spacing: 0.2px;
250255
color: #303038;
251256
margin: 0;
@@ -456,6 +461,15 @@ const dappFeatures = [
456461
color: var(--vp-c-text-1);
457462
}
458463
464+
.protocol-card-persona {
465+
font-size: 18px;
466+
font-weight: 600;
467+
font-style: italic;
468+
line-height: 1.6;
469+
color: var(--vp-c-brand-1);
470+
margin: 0;
471+
}
472+
459473
.protocol-card-desc {
460474
font-size: 18px;
461475
line-height: 1.6;
@@ -476,6 +490,10 @@ const dappFeatures = [
476490
font-size: 16px;
477491
}
478492
493+
.protocol-card-persona {
494+
font-size: 15px;
495+
}
496+
479497
.protocol-card-desc {
480498
font-size: 15px;
481499
}

0 commit comments

Comments
 (0)