A Farcaster Mini App built with Next.js, TypeScript, and React.
- 🔐 Farcaster authentication
- 🎮 Interactive mini app experience
- 🚀 Built with Next.js 15 and React 19
- 💅 Styled with Tailwind CSS
- 🔗 Web3 integration with wagmi and viem
- Node.js 18+
- npm or yarn or pnpm
- Install dependencies:
npm install
# or
pnpm install
# or
yarn install- Set up environment variables:
cp .env.example .env- Run the development server:
npm run dev
# or
pnpm dev
# or
yarn dev- Open http://localhost:3000 with your browser.
├── src/
│ ├── app/ # Next.js app directory
│ │ ├── api/ # API routes
│ │ └── ... # Pages and layouts
│ ├── components/ # React components
│ ├── hooks/ # Custom React hooks
│ └── lib/ # Utility functions and configurations
├── public/ # Static assets
└── ... # Configuration files
See .env.example for required environment variables.
This app is optimized for deployment on Vercel:
vercel deployMIT