From dd1cef8dfc53e4738fea4fb57e14da87f4e8cb96 Mon Sep 17 00:00:00 2001 From: mfahampshire Date: Wed, 16 Oct 2024 20:15:53 +0200 Subject: [PATCH] tweaked landing page component --- .../docs/components/landing-page.tsx | 37 +++++++++---------- 1 file changed, 18 insertions(+), 19 deletions(-) diff --git a/documentation/docs/components/landing-page.tsx b/documentation/docs/components/landing-page.tsx index 28db9fa839..2c75380d6c 100644 --- a/documentation/docs/components/landing-page.tsx +++ b/documentation/docs/components/landing-page.tsx @@ -11,39 +11,42 @@ import operatorGuide from "./images/operator-guide.png"; export const LandingPage = () => { const squares = [ { - text: "Network", - description: "The NYM utility token is the native token.", + text: "Network Docs", + description: "Architecture, crypto systems, and how the Mixnet works", href: "/network", - icon: networkDocs, + icon: developerDocs, }, { - text: "Operators", + text: "Operator Guides", description: - "The NYM utility token is the native token of the mixnet. Learn", + "Guides and maintenance: if you want to run a node, start here", href: "/operators", icon: operatorGuide, }, { - text: "SDKs", + text: "Developer Portal", description: - "The NYM utility token is the native token of the mixnet. Learn", + "Conceptual overview, clients, and tools for developers and integrations", + + href: "/developers", + icon: networkDocs, + }, + { + text: "SDKs", + description: "Rust and Typescript SDK docs", href: "/developers/rust", icon: sdkDocs, }, - { - text: "Developers", - description: - "The NYM utility token is the native token of the mixnet. Learn", - - href: "/developers", - icon: developerDocs, - }, ]; return ( + + Nym Docs + + Nym is a privacy platform. It provides strong network-level privacy against sophisticated end-to-end attackers, and anonymous access control @@ -51,10 +54,6 @@ export const LandingPage = () => { to allow developers to build new applications, or upgrade existing apps, with privacy features unavailable in other systems. - - Nym Docs - - {squares.map((square, index) => (