This is a Next.js project bootstrapped with create-next-app, integrated with Reown AppKit for wallet connections.
- 🔗 Multi-wallet Support: Connect with MetaMask, WalletConnect, Coinbase Wallet, and more
- 🌐 Social Login: Sign in with Google, Apple, GitHub, and email
- ⚡ Instant Settlements: Split bills and settle payments using cryptocurrency
- 🔒 Secure: Built on Web3 infrastructure with smart contract automation
- 📱 Mobile Ready: Responsive design that works on all devices
- Get your Project ID from Reown Dashboard
- Update the
NEXT_PUBLIC_PROJECT_IDin your.env.localfile
- Install dependencies:
npm install
# or
yarn install
# or
pnpm install- Set up environment variables:
# Copy the example environment file
cp .env.local.example .env.local
# Edit .env.local and add your Reown Project ID
NEXT_PUBLIC_PROJECT_ID=your_project_id_here- Run the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev- Open http://localhost:3000 with your browser to see the result.
The app uses Reown AppKit for wallet connections, which provides:
- Traditional Wallets: MetaMask, Coinbase Wallet, WalletConnect compatible wallets
- Social Logins: Google, Apple, GitHub sign-in options
- Email Login: Connect using email address
- Mobile Wallets: Support for mobile wallet apps
Simply click "Connect Wallet" on the onboarding screen to see all available options.
Currently configured for:
- Mainnet: Ethereum mainnet
- Arbitrum: Layer 2 scaling solution
You can modify the supported networks in src/config/wagmi.tsx.
src/
├── app/ # Next.js app router
├── components/ # React components
│ ├── screens/ # Page-level components
│ ├── ui/ # Reusable UI components
│ └── ConnectWallet.tsx # Wallet connection component
├── config/ # Configuration files
│ └── wagmi.tsx # Wagmi/AppKit configuration
└── context/ # React context providers
└── index.tsx # Wallet providers setup
To learn more about Next.js, take a look at the following resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.
You can check out the Next.js GitHub repository - your feedback and contributions are welcome!
The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.
Check out our Next.js deployment documentation for more details.