This project is currently under development and has not yet released a stable version. The current development phase focuses on Request for Quote (RFQ) Management.
This repository contains the source code for the frontend of a multi-tenant SaaS application. Built using Next.js, the project ensures high performance, scalability, and optimal user experience. This frontend integrates seamlessly with the backend and database to provide a modular platform for companies and professionals offering logistics services and other sectors.
Clone the repository:
git clone https://github.com/giacomosx/logistix-saas-ui.git
cd <frontend-repo-name>
Install dependencies:
npm install
# or
yarn install
Configure environment variables by creating a .env.local
file in the project root with the following values:
NEXT_PUBLIC_API_URL=<Your-API-URL>
NEXT_PUBLIC_SUPABASE_URL=<Supabase-URL>
NEXT_PUBLIC_SUPABASE_KEY=<Supabase-Key>
To start the development server:
npm run dev
# or
yarn dev
The app will be available at http://localhost:3000.
npm run dev
: Starts the application in development mode.npm run build
: Builds the project for production.npm run start
: Runs the built application in production mode.npm run lint
: Lints the code for issues.├── App # Routes and pages
├── (public) # Main public pages
├── dashboard # Main private pages
├── components # Reusable components
├── hooks # Custom react hooks
├── lib # Data informations
├── utils # Helper and utility functions
├── public # Static files (e.g., images, fonts)
├── .env.local # Environment variables
└── README.md # Project documentation
Contributions, issues, and suggestions are welcome! Feel free to open an issue or create a pull request.
git checkout -b feature/<feature-name>
git commit -m "Add new feature"
git push origin feature/<feature-name>
This project is licensed under the MIT License. See the LICENSE
file for details.