import React, { useState } from 'react'; import { WalletIllustration } from './WalletIllustration.js'; const steps = [ { title: 'What is a Wallet?', content: 'Wallets let you store, receive, send, and interact with digital assets like NFTs and tokens within web apps.', }, { title: 'Security & Ease of Use.', content: 'With blockchain apps, your wallet is used as a secure and easy way to login and interact with web applications.', }, { title: 'Decentralized & Permissionless.', content: 'An essential utility for permissionless blockchain usage. Wallets let you explore and participate in the new web.', }, ]; export const WalletInfoContent: React.FC = () => { const [currentStep, setCurrentStep] = useState(0); const goToStep = (step: number) => { setCurrentStep(step); }; return (
{step.content}