Changeset View
Changeset View
Standalone View
Standalone View
web/e.cash_v2/app/page.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 Hero from "./components/Hero"; | import Hero from "./components/Home/Hero"; | ||||
| import TrustedBy from "./components/TrustedBy"; | import TrustedBy from "./components/Home/TrustedBy"; | ||||
| import WhatWeDo from "./components/WhatWeDo"; | import WhatWeDo from "./components/Home/WhatWeDo"; | ||||
| import DigitalPaymentLandscape from "./components/DigitalPaymentLandscape"; | import DigitalPaymentLandscape from "./components/Home/DigitalPaymentLandscape"; | ||||
| import PoweringPayments from "./components/PoweringPayments"; | import PoweringPayments from "./components/Home/PoweringPayments"; | ||||
| import BentoGrid from "./components/BentoGrid"; | import BentoGrid from "./components/Home/BentoGrid"; | ||||
| import AvalancheEnhanced from "./components/AvalancheEnhanced"; | import AvalancheEnhanced from "./components/Home/AvalancheEnhanced"; | ||||
| import Developers from "./components/Developers"; | import Developers from "./components/Home/Developers"; | ||||
| export default function Home() { | export default function Home() { | ||||
| return ( | return ( | ||||
| <main> | <main> | ||||
| <Hero /> | <Hero /> | ||||
| <TrustedBy /> | <TrustedBy /> | ||||
| <WhatWeDo /> | <WhatWeDo /> | ||||
| <DigitalPaymentLandscape /> | <DigitalPaymentLandscape /> | ||||
| <PoweringPayments /> | <PoweringPayments /> | ||||
| <BentoGrid /> | <BentoGrid /> | ||||
| <AvalancheEnhanced /> | <AvalancheEnhanced /> | ||||
| <Developers /> | <Developers /> | ||||
| </main> | </main> | ||||
| ); | ); | ||||
| } | } | ||||