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
3 changes: 3 additions & 0 deletions .vitepress/theme/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -445,6 +445,9 @@ input {
:root {
--vp-home-hero-name-color: var(--vp-c-text-1);
}
.VPContent.is-home {
@apply overflow-x-hidden;
}

.VPHero.has-image.VPHomeHero {
@apply lg:pb-0;
Expand Down
6 changes: 3 additions & 3 deletions src/get-started/overview/rlc.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@

::: info Circulating Supply

The entire circulating supply of RLC has already been minted.
There are no pending token unlocks or private allocations that could impact the
market. Since launch, iExec has been self-funded, without relying on VCs.
The entire circulating supply of RLC has already been minted. There are no

Check notice on line 73 in src/get-started/overview/rlc.md

View workflow job for this annotation

GitHub Actions / vale

[vale] src/get-started/overview/rlc.md#L73

[Google.Passive] In general, use active voice instead of passive voice ('been minted').
Raw output
{"message": "[Google.Passive] In general, use active voice instead of passive voice ('been minted').", "location": {"path": "src/get-started/overview/rlc.md", "range": {"start": {"line": 73, "column": 50}}}, "severity": "INFO"}
pending token unlocks or private allocations that could impact the market. Since
launch, iExec has been self-funded, without relying on VCs.

Check failure on line 75 in src/get-started/overview/rlc.md

View workflow job for this annotation

GitHub Actions / vale

[vale] src/get-started/overview/rlc.md#L75

[Vale.Spelling] Did you really mean 'VCs'?
Raw output
{"message": "[Vale.Spelling] Did you really mean 'VCs'?", "location": {"path": "src/get-started/overview/rlc.md", "range": {"start": {"line": 75, "column": 56}}}, "severity": "ERROR"}

:::

Expand Down
59 changes: 58 additions & 1 deletion vercel.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,60 @@
{
"cleanUrls": true
"cleanUrls": true,
"redirects": [
{
"source": "/tools/:path*",
"destination": "/",
"permanent": true
},
{
"source": "/overview/what-we-do",
"destination": "/",
"permanent": true
},
{
"source": "/overview/helloWorld",
"destination": "/",
"permanent": true
},
{
"source": "/overview/helloWorld/:path*",
"destination": "/",
"permanent": true
},
{
"source": "/overview/use-case-demo",
"destination": "/",
"permanent": true
},
{
"source": "/overview/use-case-demo/:path*",
"destination": "/",
"permanent": true
},
{
"source": "/for-developers/:path*",
"destination": "/",
"permanent": true
},
{
"source": "/for-workers/:path*",
"destination": "/",
"permanent": true
},
{
"source": "/key-concepts/:path*",
"destination": "/",
"permanent": true
},
{
"source": "/use-cases/:path*",
"destination": "/",
"permanent": true
},
{
"source": "/help/:path*",
"destination": "/",
"permanent": true
}
]
}