diff --git a/content/_index.md b/content/_index.md index d5d807c2..928bb70c 100644 --- a/content/_index.md +++ b/content/_index.md @@ -5,14 +5,14 @@ toc: false --- {{< hextra/hero-headline >}} -Entropy documentation +Build programs. Get signatures. Free users. {{< /hextra/hero-headline >}} {{< hextra/hero-subtitle>}} -Build simple and secure decentralized asset custodians, delegate on-chain actions to an updatable agent, and build context-aware automation for your smart contracts and blockchain protocols. +Entropy enables users to generate cryptographic signatures without directly interacting with their private key. Solving this problem allows developers to create all kinds of automated tooling and blockchain infrastructure, freeing users from the busy-work of the modern blockchain. {{< /hextra/hero-headline >}} -Explore our guides and examples to integrate Entropy into your project: +  {{< cards >}} @@ -41,6 +41,34 @@ Explore our guides and examples to integrate Entropy into your project: {{< /cards >}} +  + +## Join the Community + +{{< cards cols=1 >}} + + {{< card + link="https://discord.com/invite/9JUQwHBhVz" + title="Discord Server" + subtitle="Want to mingle with the Entropy community? Head on over to the Entropy Community Discord." + >}} + + {{< card + link="https://twitter.com/entropydotxyz" + title="Official Twitter" + subtitle="Follow our main Twitter account for quick updates and annoucements." + >}} + + {{< card + link="https://github.com/entropyxyz/community" + title="GitHub Community" + subtitle="You can checkout the Community GitHub Repo for discussions, announcements, and support." + >}} + +{{< /cards >}} + +  + ## Need help? Are you stuck with something and aren't sure what to do? Head over to the [Entropy Community repo](https://github.com/entropyxyz/community) for support. You can also check out the [Entropy Discord](https://discord.com/invite/9JUQwHBhVz) if you want to chat to the community! diff --git a/hugo.yaml b/hugo.yaml index 1daedaec..a53b35ac 100644 --- a/hugo.yaml +++ b/hugo.yaml @@ -15,17 +15,17 @@ menu: params: icon: github sidebar: - - name: More + - name: External links params: type: separator weight: 1 - - name: "Community Repository ↗" + - name: "Community Repository" url: "https://github.com/entropyxyz/community" weight: 2 - - name: "GitHub Organization ↗" + - name: "GitHub Organization" url: "https://github.com/entropyxyz" weight: 3 - - name: "Discord Server ↗" + - name: "Discord Server" url: "https://discord.com/invite/9JUQwHBhVz" weight: 4 @@ -41,7 +41,7 @@ params: width: 80 page: - width: full + width: full # full/wide/normal theme: default: system diff --git a/themes/hextra/assets/css/custom.css b/themes/hextra/assets/css/custom.css index 5c87890a..5a1e43fe 100644 --- a/themes/hextra/assets/css/custom.css +++ b/themes/hextra/assets/css/custom.css @@ -4,7 +4,8 @@ margin-top: 0px; } -/*Signal outbound links that will take users away from this site.*/ +/* Signal outbound links that will take users away from this site. */ +/* --------------------------------------------------------------- */ article a[href^="http"]::after, article a[href^="https://"]::after { @@ -18,3 +19,11 @@ article a[href^="https://"]::after background-size: contain; display: inline-block; } + +/* Exclude links within elements with the hextra-cards class */ +.hextra-cards a[href^="http"]::after, +.hextra-cards a[href^="https://"]::after { + content: none; + background-image: none; +} +/* --------------------------------------------------------------- */