diff --git a/docs/docs/homepage/features.tsx b/docs/docs/homepage/features.tsx index b4b9984e246..def1cbaa1c5 100644 --- a/docs/docs/homepage/features.tsx +++ b/docs/docs/homepage/features.tsx @@ -19,10 +19,6 @@ export const FeatureList = [ message: "Transaction finality is only bounded by Head network latency, resulting in near-instant settlement", }), - tagLine: translate({ - id: "homepage.featureList.lowLatency.perk", - message: "Fast and cheap transactions", - }), }, { title: translate({ @@ -35,10 +31,6 @@ export const FeatureList = [ message: "Transactions are replicated only among protocol participants, reducing data processing and increasing throughput", }), - tagLine: translate({ - id: "homepage.featureList.highThroughput.perk", - message: "Fast and cheap transactions", - }), }, { title: translate({ @@ -51,10 +43,6 @@ export const FeatureList = [ message: "Low processing needs by protocol participants and configurable protocol parameters enable even zero-fee use cases", }), - tagLine: translate({ - id: "homepage.featureList.lowFees.perk", - message: "Fast and cheap transactions", - }), }, { title: translate({ @@ -67,10 +55,6 @@ export const FeatureList = [ message: "Cardano transactions are processed off-chain using the exact same battle-tested Cardano ledger", }), - tagLine: translate({ - id: "homepage.featureList.isomorphicStateChannels.perk", - message: "Native security", - }), }, { title: translate({ @@ -83,10 +67,6 @@ export const FeatureList = [ message: "Participants of a Hydra head cannot lose any funds that they have not explicitly authorized", }), - tagLine: translate({ - id: "homepage.featureList.censorshipResistance.perk", - message: "Native security", - }), }, { title: translate({ @@ -99,9 +79,5 @@ export const FeatureList = [ message: "The Hydra protocols have been peer-reviewed and implementations are heavily tested resulting in high-security standards", }), - tagLine: translate({ - id: "homepage.featureList.basedOnThoroughResearch.perk", - message: "Native security", - }), }, ]; diff --git a/docs/src/components/homepage/Features.tsx b/docs/src/components/homepage/Features.tsx index a11611e2497..a1f548b75bd 100644 --- a/docs/src/components/homepage/Features.tsx +++ b/docs/src/components/homepage/Features.tsx @@ -1,5 +1,4 @@ import React, { FC } from "react"; -import clsx from "clsx"; import { motion } from "framer-motion"; import { FeatureList } from "../../../docs/homepage/features"; import useMediaQuery from "../../hooks/useMediaQuery"; @@ -9,11 +8,10 @@ type Props = { icon: React.JSX.Element; title: string; description: string; - tagLine: string; index: number; }; -const Feature: FC = ({ icon, title, description, tagLine, index }) => { +const Feature: FC = ({ icon, title, description, index }) => { const isTabletUp = useMediaQuery(forTablet); return ( = ({ icon, title, description, tagLine, index }) => {
{title}

{description}

- - {tagLine} -
); };