diff --git a/src/app/unstake-basket/page.tsx b/src/app/unstake-basket/page.tsx new file mode 100644 index 0000000..d24b18c --- /dev/null +++ b/src/app/unstake-basket/page.tsx @@ -0,0 +1,11 @@ +'use client'; + +import { UnstakeBasketForm } from '@/components/unstake-basket-form'; + +export default function UnstakeBasketPage() { + return ( +
+ Select pools to burn all LP tokens and receive all underlying tokens proportionally +
+No pools with LP token balance found.
+Stake some tokens first to use this feature.
++ Burning LP tokens from {selectedPools.size} pool{selectedPools.size !== 1 ? 's' : ''} +
++ Please confirm the transactions in your wallet +
++ {transactionError || 'Transaction failed'} +
+ +