diff --git a/.vitepress/theme/style.css b/.vitepress/theme/style.css index a1eda7c4..6871ae38 100644 --- a/.vitepress/theme/style.css +++ b/.vitepress/theme/style.css @@ -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; diff --git a/src/get-started/overview/rlc.md b/src/get-started/overview/rlc.md index 6063b9f5..52599603 100644 --- a/src/get-started/overview/rlc.md +++ b/src/get-started/overview/rlc.md @@ -70,9 +70,9 @@ payment. ::: 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 +pending token unlocks or private allocations that could impact the market. Since +launch, iExec has been self-funded, without relying on VCs. ::: diff --git a/vercel.json b/vercel.json index bd6fd8fa..7e41ffe7 100644 --- a/vercel.json +++ b/vercel.json @@ -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 + } + ] }