Skip to content

Commit

Permalink
Make the purpose of Entropy clear from the beginning. (#184)
Browse files Browse the repository at this point in the history
* Adds basic intro to what Entropy actually makes.

* Cleans up intro text on homepage.

* Improves sidebar navigation clarity.

* Hides external link icon from cards shortcode.

* Specifices what Entropy is actually about. Adds Community card links.
  • Loading branch information
johnnymatthews authored Jul 30, 2024
1 parent f6e24ab commit c605fb7
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 9 deletions.
34 changes: 31 additions & 3 deletions content/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
&nbsp;

{{< cards >}}

Expand Down Expand Up @@ -41,6 +41,34 @@ Explore our guides and examples to integrate Entropy into your project:

{{< /cards >}}

&nbsp;

## 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 >}}

&nbsp;

## 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!
10 changes: 5 additions & 5 deletions hugo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -41,7 +41,7 @@ params:
width: 80

page:
width: full
width: full # full/wide/normal

theme:
default: system
Expand Down
11 changes: 10 additions & 1 deletion themes/hextra/assets/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand All @@ -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;
}
/* --------------------------------------------------------------- */

0 comments on commit c605fb7

Please sign in to comment.