Changeset View
Changeset View
Standalone View
Standalone View
web/e.cash_v2/app/components/Home/Hero.tsx
- This file was moved from web/e.cash_v2/app/components/Hero.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 React, { useState } from "react"; | import React, { useState } from "react"; | ||||
| import ContentContainer from "./ContentContainer"; | import ContentContainer from "../Atoms/ContentContainer"; | ||||
| import Image from "next/image"; | import Image from "next/image"; | ||||
| import Link from "next/link"; | import Link from "next/link"; | ||||
| import GridPattern from "./GridPattern"; | import GridPattern from "../Atoms/GridPattern"; | ||||
| import Spline from "@splinetool/react-spline"; | import Spline from "@splinetool/react-spline"; | ||||
| export default function Hero() { | export default function Hero() { | ||||
| type HeroBoxProps = { | type HeroBoxProps = { | ||||
| title: string; | title: string; | ||||
| text: string; | text: string; | ||||
| href: string; | href: string; | ||||
| }; | }; | ||||
| ▲ Show 20 Lines • Show All 118 Lines • Show Last 20 Lines | |||||