Skip to content
This repository was archived by the owner on Apr 3, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
73 changes: 0 additions & 73 deletions src/content/pages/about/index.md
Original file line number Diff line number Diff line change
@@ -1,27 +1,5 @@
---
path: /about
teamsSection:
left:
description:
Keep is the privacy-focused infrastructure behind tBTC, the only
truly decentralized solution for Bitcoin on Ethereum. Keep secures private
data on public blockchains with “keeps.”
image: /images/keep-logo-green.png
buttons:
- label: Visit Keep's Website
url: https://keep.network/
variant: EXTERNAL_OUTLINE
title: Contributing Teams
right:
description:
NuCypher brings privacy to the public blockchain. NuCypher's proxy
re-encryption (PRE) and condition-based decryption (CBD) network provides
cryptographic access controls for distributed apps and protocols.
image: /images/nu-logo.png
buttons:
- label: Visit NuCypher’s Github
url: https://github.com/nucypher
variant: EXTERNAL_OUTLINE
faq:
title: FAQ
additionalHelp:
Expand All @@ -33,57 +11,6 @@ faq:
image: /images/logo-discord.png
alt: discord
variant: INTERNAL_SOLID
faqs:
- question: What is threshold cryptography?
answer: Threshold cryptography is a revolutionary technology that uses
cryptography to unlock greater utility and usability for digital assets
without needing to trust a centralized party. Threshold cryptography
distributes sensitive operations across multiple independent entities –
like nodes in a network – and requires a threshold, or minimum number of
those entities to cooperate for the operation to be successful.
- question: What staking providers work with Threshold?
answer: You can refer to the list of staking providers below.
buttons:
- label: Staking Providers
leftIcon:
image: /images/document.svg
rightIcon:
image: /images/external-arrow.svg
url: https://docs.threshold.network/staking-and-running-a-node/running-a-node/staking-providers
- question: What determines the exchange rate for T tokens?
answer:
As decided by the NU and KEEP communities in the final merge proposal,
the conversion ratio for each token is based on the total supply rather
than price. The final total supply of NU is ~1,380,688,920 and the total
supply of KEEP is ~940,795,010. As a result, the token factors are
1NU:~3.26T and 1KEEP:~4.78T.
buttons:
- label: Launch Details Post
leftIcon:
image: /images/document.svg
rightIcon:
image: /images/external-arrow.svg
url: https://blog.threshold.network/threshold-launch/
- question: How did Keep and NuCypher merge?
answer:
The Keep and NuCypher communities voted to merge into a single network
in the RC0 T Token proposal. This resulted in the first ever
decentralized on-chain network merger and launched Threshold Network.
The merger resulted in the introduction of a new token (T), the
Threshold DAO, and the Threshold Discord server.
buttons:
- label: RC0 Proposal
url: https://forum.keep.network/t/t-token-proposal-rc0/264
leftIcon:
image: /images/document.svg
rightIcon:
image: /images/external-arrow.svg
- label: Merger Blog Post
url: https://blog.threshold.network/decentralized-merger
leftIcon:
image: /images/document.svg
rightIcon:
image: /images/external-arrow.svg
title: About
template: about-page
seoTitle: About
Expand Down
11 changes: 0 additions & 11 deletions src/content/pages/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,17 +69,6 @@ tokenHolderRole:
variant: INTERNAL_OUTLINE
rowReverse: true
bgColor: "#3c3c3c"
tacoRole:
title: Build uncensorable e2ee into your dapp
description: TACo is the only end-to-end encryption plugin that is end-to-end decentralized
image: /images/taco-section-image.svg
buttons:
- label: Taco.build
url: https://taco.build
variant: INTERNAL_SOLID
- label: Docs
url: https://docs.taco.build
variant: EXTERNAL_OUTLINE
activeCommunity:
title: Threshold is run by an active community.
bgColor: "#141414"
Expand Down
102 changes: 1 addition & 101 deletions src/templates/about-page/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,10 @@ import { FC } from "react"
import { graphql } from "gatsby"
import SectionTemplate from "../home-page/SectionTemplate"
import { Box } from "@chakra-ui/react"
import ContributingTeamsSection from "./ContributingTeamsSection"
import FaqSection from "./FaqSection"
import AuditSection from "./AuditSection"

const FAQPageTemplate: FC<any> = ({ data }) => {
const { aboutInfo, teamsSection, faq, audits } =
data.markdownRemark.frontmatter
const { aboutInfo, audits } = data.markdownRemark.frontmatter

return (
<Box>
Expand All @@ -19,8 +16,6 @@ const FAQPageTemplate: FC<any> = ({ data }) => {
bgColor="gray.900"
size="sm"
/>
<ContributingTeamsSection {...teamsSection} />
<FaqSection {...faq} />
<AuditSection audits={audits} />
</Box>
)
Expand Down Expand Up @@ -53,101 +48,6 @@ export const query = graphql`
variant
}
}
teamsSection {
title
left {
image {
id
relativePath
internal {
mediaType
}
childImageSharp {
gatsbyImageData(width: 200)
}
}
description
buttons {
label
url
variant
}
}
right {
image {
id
relativePath
internal {
mediaType
}
childImageSharp {
gatsbyImageData(width: 200)
}
}
description
buttons {
label
url
variant
}
}
}
faq {
title
faqs {
question
answer
buttons {
label
url
leftIcon {
image {
id
relativePath
internal {
mediaType
}
childImageSharp {
gatsbyImageData(width: 200)
}
}
}
rightIcon {
image {
id
relativePath
internal {
mediaType
}
childImageSharp {
gatsbyImageData(width: 200)
}
}
}
}
}
additionalHelp {
text
button {
label
url
variant
icon {
image {
id
relativePath
internal {
mediaType
}
childImageSharp {
gatsbyImageData(width: 200)
}
}
alt
}
}
}
}
audits {
title
url
Expand Down
21 changes: 0 additions & 21 deletions src/templates/home-page/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import InfoColumnsSection from "./InfoColumnsSection"
const SplashPageTemplate: FC<any> = ({ data }) => {
const {
hero,
tacoRole,
bugBounty,
lpRole,
tokenHolderRole,
Expand All @@ -24,7 +23,6 @@ const SplashPageTemplate: FC<any> = ({ data }) => {
<SectionTemplate {...bugBounty} />
<SectionTemplate {...lpRole} bgColor="#181D22" />
<SectionTemplate {...tokenHolderRole} bgColor="#161A1F" />
<SectionTemplate {...tacoRole} bgColor="#161A1F" />
<ActiveCommunity {...activeCommunity} proposals={proposals} />
<JoinTheCommunity {...joinTheCommunity} />
</>
Expand Down Expand Up @@ -122,25 +120,6 @@ export const query = graphql`
variant
}
}
tacoRole {
title
description
image {
id
relativePath
internal {
mediaType
}
childImageSharp {
gatsbyImageData(width: 200)
}
}
buttons {
label
url
variant
}
}
activeCommunity {
rowReverse
title
Expand Down
82 changes: 0 additions & 82 deletions static/admin/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -502,88 +502,6 @@ collections:
},
],
}
- label: "Taco Section"
name: "tacoRole"
widget: "object"
collapsed: true
fields:
- {
label: "Title",
name: "title",
widget: "string",
minimal: true,
}
- {
label: "Description",
name: "description",
widget: "string",
required: false,
}
- {
label: "Image",
name: "image",
widget: file,
media_library: { config: { multiple: false } },
}
- {
label: "Buttons",
name: "buttons",
widget: "list",
allow_add: true,
required: false,
fields:
[
{ label: Label, name: label, widget: string },
{ label: URL, name: url, widget: string },
{
label: Variant,
name: variant,
widget: select,
required: true,
options:
[
{
label: "External Solid",
value: "EXTERNAL_SOLID",
},
{
label: "Internal Solid",
value: "INTERNAL_SOLID",
},
{
label: "External Outline",
value: "EXTERNAL_OUTLINE",
},
{
label: "Internal Outline",
value: "INTERNAL_OUTLINE",
},
],
},
],
}
- {
label: "Sub Items",
name: "subitems",
widget: "list",
hint: "Do not add more than 3",
allow_add: true,
fields:
[
{ label: "Title", name: "title", widget: "string" },
{
label: "Description",
name: "description",
widget: "markdown",
},
{
label: "Image",
name: "image",
widget: file,
media_library: { config: { multiple: false } },
},
],
}
- label: "Harness The Power Section"
name: "harnessThePower"
widget: "object"
Expand Down