Explore the live demonstration of the project: nextjs14-figma
FigPro is a Figma Clone built with Next.js 14 and Tailwind CSS using Liveblocks and Fabric.js. It is a collaborative design tool for building meaningful products. Seamlessly design, prototype, develop, and collect feedback in a single platform.
Folder Structure
nextjs14-figma/
├── .vscode/
│ └── settings.json
├── app/
│ ├── (root)/
│ │ └── app.tsx
│ ├── api/
│ │ └── liveblocks/
│ │ └── auth.ts
│ ├── favicon.ico
│ ├── globals.css
│ ├── layout.tsx
│ └── page.tsx
├── components/
│ ├── comments/
│ │ ├── comments-overlay.tsx
│ │ ├── comments.tsx
│ │ ├── new-thread-cursor.tsx
│ │ ├── new-thread.tsx
│ │ ├── pinned-composer.tsx
│ │ └── pinned-thread.tsx
│ ├── cursor/
│ │ ├── cursor-chat.tsx
│ │ ├── cursor.tsx
│ │ └── live-cursors.tsx
│ ├── layout/
│ │ ├── left-sidebar.tsx
│ │ ├── loader.tsx
│ │ ├── navbar.tsx
│ │ └── right-sidebar.tsx
│ ├── live.tsx
│ ├── reaction/
│ │ ├── flying-reaction.module.css
│ │ ├── flying-reaction.tsx
│ │ └── reaction-selector.tsx
│ ├── settings/
│ │ ├── color.tsx
│ │ ├── dimension.tsx
│ │ ├── export.tsx
│ │ └── text.tsx
│ ├── shapes-menu.tsx
│ ├── ui/
│ │ ├── button.tsx
│ │ ├── context-menu.tsx
│ │ ├── dialog.tsx
│ │ ├── dropdown-menu.tsx
│ │ ├── input.tsx
│ │ ├── label.tsx
│ │ └── select.tsx
│ └── users/
│ ├── avatar.module.css
│ ├── avatar.tsx
│ └── live-avatars.tsx
├── constants/
│ └── index.ts
├── hooks/
│ ├── use-interval.ts
│ └── use-max-z-index.ts
├── lib/
│ ├── canvas.ts
│ ├── key-events.ts
│ ├── shapes.ts
│ └── utils.ts
├── providers/
│ └── room-provider.tsx
├── public/
│ ├── .DS_Store
│ ├── assets/
│ │ ├── CursorSVG.tsx
│ │ └── [[...]].{svg,gif,ico}
│ ├── next.svg
│ ├── thumbnail.png
│ └── vercel.svg
├── types/
│ ├── declaration.d.ts
│ └── index.ts
└── utils/
│ └── get-contrasting-color.ts
├── .env.local
├── .eslintignore
├── .eslintrc.json
├── .gitignore
├── .prettierignore
├── .prettierrc
├── components.json
├── liveblocks.config.ts
├── next-env.d.ts
├── next.config.mjs
├── package-lock.json
├── package.json
├── postcss.config.mjs
├── README.md
├── tailwind.config.ts
└── tsconfig.json
Table of Contents
FigPro is built using the following technologies:
- TypeScript: TypeScript is a typed superset of JavaScript that compiles to plain JavaScript.
- Next.js: Next.js is a React framework for building server-side rendered and statically generated web applications.
- Tailwind CSS: Tailwind CSS is a utility-first CSS framework for rapidly building custom user interfaces.
- Liveblocks: Liveblocks is a real-time collaboration API for building collaborative applications.
- Fabric.js: Fabric.js is a powerful and simple JavaScript HTML5 canvas library.
- Framer Motion: Framer Motion is a production-ready motion library for React.
- ESLint: ESLint is a static code analysis tool for identifying problematic patterns found in JavaScript code.
- Prettier: Prettier is an opinionated code formatter.
- Shadcn-UI: Shadcn UI is a React UI library that helps developers rapidly build modern web applications.
- jsPDF: jsPDF is a client-side JavaScript PDF generation library.
- Vercel: Vercel is a cloud platform for frontend developers, providing the frameworks, workflows, and infrastructure to build a faster, more personalized Web.
To get this project up and running in your development environment, follow these step-by-step instructions.
In order to install and run this project locally, you would need to have the following installed on your local machine.
Step 0:
Important
- the application uses Liveblocks for Real-time Collaboration, therefore, you need to create
Liveblocks account here and sets the
NEXT_PUBLIC_LIVEBLOCKS_PUBLIC_KEY
andNEXT_PUBLIC_LIVEBLOCKS_SECRET_KEY
environment variables in.env
file.
Step 1:
Download or clone this repo by using the link below:
git clone https://github.com/ladunjexa/nextjs14-figma.git
Step 2:
Execute the following command in the root directory of the downloaded repo in order to install dependencies:
npm install
Step 3:
Execute the following command in order to run the development server locally:
npm run dev
Step 4:
Open http://localhost:3000 with your browser to see the result.
All scripts are defined in the package.json
file. Here is a list of all scripts:
Script | Action |
---|---|
npm install |
Installs dependencies |
npm run dev |
Starts local dev server at localhost:3000 |
npm run build |
Build your production site to ./dist/ |
npm run start |
Start your production site locally |
npm run lint |
Run ESLint |
Environment variables[^2] can be used for configuration. They must be set before running the app.
Environment variables are variables that are set in the operating system or shell, typically used to configure programs.
FigPro uses Liveblocks for real-time collaboration. You need to create an account on Liveblocks and get the required credentials to run the app.
Create a .env
file in the root directory of the project and add the following environment
variables:
NEXT_PUBLIC_LIVEBLOCKS_PUBLIC_KEY=<LIVEBLOCKS_PUBLIC_KEY>
NEXT_PUBLIC_LIVEBLOCKS_SECRET_KEY=<LIVEBLOCKS_SECRET_KEY>
You can create an optimized production build with the following command:
npm run build
The easiest way to deploy this Next.js app is to use the Vercel Platform.
You can also deploy this Next.js app with Netlify.
Check out Next.js deployment documentation for more details.
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
To fix a bug or enhance an existing module, follow these steps:
- Fork the repo
- Create a new branch (
git checkout -b improve-feature
) - Make the appropriate changes in the files
- Commit your changes (
git commit -m 'Improve feature'
) - Push to the branch (
git push origin improve-feature
) - Create a Pull Request 🎉
If you find a bug (failure of a module to execute its intended function), kindly open an issue here by including the issue with a title and clear description.
If you'd like to request a new function, feel free to do so by opening an issue here. Please include sample queries and their corresponding results.
I'd like to express my gratitude to the following people who helped me with this project and made it possible:
- Next.js
- Tailwind CSS
- Liveblocks
- Fabric.js
- Radix
- Shadcn UI
- Framer Motion
- jsPDF
- UUID
- Vercel
- JavaScript Mastery
FigPro is open source software licensed as MIT and is free to use — See LICENSE for more details.