From fd8af2ac373191b7849190cf8c7f84cdadee9f23 Mon Sep 17 00:00:00 2001 From: MacLane Wilkison Date: Fri, 25 Jul 2025 19:24:55 -0400 Subject: [PATCH] Remove TACo section, former contributing teams, and dated FAQ --- src/content/pages/about/index.md | 73 --------------------- src/content/pages/index.md | 11 ---- src/templates/about-page/index.tsx | 102 +---------------------------- src/templates/home-page/index.tsx | 21 ------ static/admin/config.yml | 82 ----------------------- 5 files changed, 1 insertion(+), 288 deletions(-) diff --git a/src/content/pages/about/index.md b/src/content/pages/about/index.md index de875761..6366a375 100644 --- a/src/content/pages/about/index.md +++ b/src/content/pages/about/index.md @@ -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: @@ -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 diff --git a/src/content/pages/index.md b/src/content/pages/index.md index a2f65d76..f0d8edd0 100644 --- a/src/content/pages/index.md +++ b/src/content/pages/index.md @@ -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" diff --git a/src/templates/about-page/index.tsx b/src/templates/about-page/index.tsx index 1d1faf39..4f36ea0c 100644 --- a/src/templates/about-page/index.tsx +++ b/src/templates/about-page/index.tsx @@ -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 = ({ data }) => { - const { aboutInfo, teamsSection, faq, audits } = - data.markdownRemark.frontmatter + const { aboutInfo, audits } = data.markdownRemark.frontmatter return ( @@ -19,8 +16,6 @@ const FAQPageTemplate: FC = ({ data }) => { bgColor="gray.900" size="sm" /> - - ) @@ -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 diff --git a/src/templates/home-page/index.tsx b/src/templates/home-page/index.tsx index 64466340..aaf19f79 100644 --- a/src/templates/home-page/index.tsx +++ b/src/templates/home-page/index.tsx @@ -9,7 +9,6 @@ import InfoColumnsSection from "./InfoColumnsSection" const SplashPageTemplate: FC = ({ data }) => { const { hero, - tacoRole, bugBounty, lpRole, tokenHolderRole, @@ -24,7 +23,6 @@ const SplashPageTemplate: FC = ({ data }) => { - @@ -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 diff --git a/static/admin/config.yml b/static/admin/config.yml index 57f55f2d..5496c603 100644 --- a/static/admin/config.yml +++ b/static/admin/config.yml @@ -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"