A simple UI to cast on Farcaster and Tweet on Twitter in one go.
To start the project locally, run:
yarn dev
Open http://localhost:3000
with your browser to see the result.
- Node.js >= 12.22.0
- Yarn 1 (Classic)
.github
— GitHub configuration including the CI workflow.public
— Static assets such as robots.txt, images, and favicon.src
— Application source code, including pages, components, styles.
yarn dev
— Starts the application in development mode athttp://localhost:3000
.yarn build
— Creates an optimized production build of your application.yarn start
— Starts the application in production mode.yarn type-check
— Validate code using TypeScript compiler.yarn lint
— Runs ESLint for all files in thesrc
directory.yarn format
— Runs Prettier for all files in thesrc
directory.yarn commit
— Run commitizen. Alternative togit commit
.
TypeScript are pre-configured with custom path mappings. To import components or files, use the @
prefix.
import { Button } from '@/components/Button';
// To import images or other files from the public folder
import avatar from '@/public/avatar.png';
This project is licensed under the MIT License - see the LICENSE.md file for more information.