import Layout from '@/components/layout' import styles from '@/styles/wallet.module.css' import { WalletCard } from '@/components/wallet-card' import Link from 'next/link' import { WALLET_DEFS } from '@/components/wallet' import { getGetServerSideProps } from '@/api/ssrApollo' export const getServerSideProps = getGetServerSideProps({ authRequired: true }) export default function Wallet () { return (

attach wallets

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