Skip to content

Commit

Permalink
update content
Browse files Browse the repository at this point in the history
  • Loading branch information
davidsemakula committed Oct 11, 2023
1 parent 8540c7d commit 6fa79d2
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
5 changes: 5 additions & 0 deletions src/pages/index.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@
overflow: hidden;
}

.heroBanner p a {
color: var(--ifm-hero-text-color);
text-decoration: underline;
}

@media screen and (max-width: 996px) {
.heroBanner {
padding: 2rem;
Expand Down
10 changes: 9 additions & 1 deletion src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,15 @@ function HomepageHeader() {
<header className={clsx('hero hero--primary', styles.heroBanner)}>
<div className="container">
<h1 className="hero__title">{siteConfig.title}</h1>
<p className="hero__subtitle">{siteConfig.tagline}</p>
<p className="hero__subtitle">
A protocol and library for computation of{' '}
<Link href="https://en.wikipedia.org/wiki/Threshold_cryptosystem#Methodology">threshold signatures</Link> by
multiple{' '}
<Link href="https://ethereum.org/en/decentralized-identity/#what-are-decentralized-identifiers">
decentralized identities
</Link>
.
</p>
<div className={styles.buttons}>
<Link className="button button--secondary button--lg" to="/whitepaper">
Read the Whitepaper - 10min ⏱️
Expand Down

0 comments on commit 6fa79d2

Please sign in to comment.