A decentralized social media application built with Next.js, Wagmi, and RainbowKit.
Before you begin, ensure you have installed:
- Node.js (v18 or higher)
- npm or yarn or pnpm
- Git
Create a .env
file in the root directory with the following variables:
NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID=your_wallet_connect_project_id NEXT_PUBLIC_CONTRACT_ADDRESS_PROFILE=your_profile_contract_address NEXT_PUBLIC_CONTRACT_ADDRESS_POST=your_post_contract_address
- Clone the repository:
git clone https://github.com/Menh1505/vent_it-client.git
cd vent_it-client
- Install dependencies:
npm install
or
yarn install
or
pnpm install
or
bun install
- 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.
- 🌙 Dark/Light mode support
- 👤 Web3 Authentication with RainbowKit
- 📝 Create and view posts
- 💬 Comment system
- 👥 User profiles
- 🔍 Search users by wallet address
You can watch this demo video for more information: Demo
- Framework: Next.js 15
- Styling: Tailwind CSS
- Web3:
- Wagmi
- RainbowKit
- Viem
- State Management: React Context
- UI Components:
- HeadlessUI
- Heroicons
- Development Tools:
- TypeScript
- ESLint
- PostCSS
vent_it-client/ ├── app/ │ ├── components/ # Reusable UI components │ ├── providers/ # Context providers │ ├── features/ # Feature-specific logic │ ├── types/ # TypeScript type definitions │ └── styles/ # Global styles ├── public/ # Static assets └── utils/ # Utility functions
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature
) - Commit your changes (
git commit -m 'Add some amazing feature'
) - Push to the branch (
git push origin feature/amazing-feature
) - Open a Pull Request
This project is licensed under the MIT License - see the LICENSE file for details.