Changeset View
Changeset View
Standalone View
Standalone View
web/e.cash_v2/app/components/Home/PoweringPayments.tsx
- This file was moved from web/e.cash_v2/app/components/PoweringPayments.tsx.
| // Copyright (c) 2025 The Bitcoin developers | // Copyright (c) 2025 The Bitcoin developers | ||||
| // Distributed under the MIT software license, see the accompanying | // Distributed under the MIT software license, see the accompanying | ||||
| // file COPYING or http://www.opensource.org/licenses/mit-license.php. | // file COPYING or http://www.opensource.org/licenses/mit-license.php. | ||||
| "use client"; | "use client"; | ||||
| import { useRef, useState, useEffect } from "react"; | import { useRef, useState, useEffect } from "react"; | ||||
| import ContentContainer from "./ContentContainer"; | import ContentContainer from "../Atoms/ContentContainer"; | ||||
| import Image from "next/image"; | import Image from "next/image"; | ||||
| import { cn } from "../utils/cn"; | import { cn } from "../../utils/cn"; | ||||
| const eCashFeatures = [ | const eCashFeatures = [ | ||||
| { | { | ||||
| name: "Avalanche", | name: "Avalanche", | ||||
| text: "Avalanche is a breakthrough consensus algorithm integrated with eCash's Proof-of-Work, enabling instant transaction finality, greater flexibility, and unmatched security.", | text: "Avalanche is a breakthrough consensus algorithm integrated with eCash's Proof-of-Work, enabling instant transaction finality, greater flexibility, and unmatched security.", | ||||
| }, | }, | ||||
| { | { | ||||
| name: "Staking", | name: "Staking", | ||||
| ▲ Show 20 Lines • Show All 239 Lines • Show Last 20 Lines | |||||