import { getGetServerSideProps } from '@/api/ssrApollo' import Layout from '@/components/layout' import styles from '@/styles/wallet.module.css' import { WalletCard } from '@/components/wallet-card' import { WALLETS } from '@/fragments/wallet' import Link from 'next/link' const wallets = [ await import('@/components/webln/lnbits') ] export const getServerSideProps = getGetServerSideProps({ query: WALLETS, authRequired: true }) export default function Wallet ({ ssrData }) { // TODO: set wallet status // TODO: load server wallets return (

attach wallets

attach wallets to supplement your SN wallet
wallet logs
{wallets.map((w, i) => ( ))}
) }