Changeset View
Changeset View
Standalone View
Standalone View
web/e.cash_v2/app/components/Home/AvalancheEnhanced.tsx
- This file was moved from web/e.cash_v2/app/components/AvalancheEnhanced.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 { useState } from "react"; | import { useState } from "react"; | ||||
| import Image from "next/image"; | import Image from "next/image"; | ||||
| import ContentContainer from "./ContentContainer"; | import ContentContainer from "../Atoms/ContentContainer"; | ||||
| import { cn } from "../utils/cn"; | import { cn } from "../../utils/cn"; | ||||
| interface Feature { | interface Feature { | ||||
| feature: string; | feature: string; | ||||
| details: string; | details: string; | ||||
| } | } | ||||
| const features: Feature[] = [ | const features: Feature[] = [ | ||||
| { | { | ||||
| ▲ Show 20 Lines • Show All 120 Lines • Show Last 20 Lines | |||||