Changeset View
Changeset View
Standalone View
Standalone View
web/e.cash_v2/app/components/Home/WhatWeDo.tsx
- This file was moved from web/e.cash_v2/app/components/WhatWeDo.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. | ||||
| import ContentContainer from "./ContentContainer"; | import ContentContainer from "../Atoms/ContentContainer"; | ||||
| import Image from "next/image"; | import Image from "next/image"; | ||||
| import PlusHeader from "./PlusHeader"; | import PlusHeader from "../Atoms/PlusHeader"; | ||||
| export default function WhatWeDo() { | export default function WhatWeDo() { | ||||
| type CardProps = { | type CardProps = { | ||||
| text: string; | text: string; | ||||
| image: string; | image: string; | ||||
| }; | }; | ||||
| const Card = ({ text, image }: CardProps) => { | const Card = ({ text, image }: CardProps) => { | ||||
| return ( | return ( | ||||
| ▲ Show 20 Lines • Show All 51 Lines • Show Last 20 Lines | |||||