Changeset View
Changeset View
Standalone View
Standalone View
web/e.cash_v2/app/components/Home/BentoGrid.tsx
- This file was moved from web/e.cash_v2/app/components/BentoGrid.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 React from "react"; | import React 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"; | ||||
| import GridPattern from "./GridPattern"; | import GridPattern from "../Atoms/GridPattern"; | ||||
| export default function BentoGrid() { | export default function BentoGrid() { | ||||
| type CardProps = { | type CardProps = { | ||||
| title: string; | title: string; | ||||
| text: string; | text: string; | ||||
| icon: string; | icon: string; | ||||
| image: string; | image: string; | ||||
| children?: React.ReactNode; | children?: React.ReactNode; | ||||
| ▲ Show 20 Lines • Show All 141 Lines • Show Last 20 Lines | |||||