Get Started
Welcome to Futurism! This guide will help you quickly get up and running with Futurism in your project development. Follow the steps below to set up your project and start building beautiful, responsive UIs with Futurism.
1. Download Futurism
To get started, you need to download the latest version of Futurism. You can download it directly from our website.
https://tailwinddashboard.com/futurism-template/
2. Install Dependencies
After downloading Futurism, navigate to the project directory and install the necessary dependencies using NPM.
npm install
3. Start Development
With everything installed, you can now start the development server. This will compile your files, watch for changes, and launch a local server with Browsersync for live reloading.
npm run dev
Your project will now be accessible at http://localhost:3000.
4. Build for Production
When you're ready to deploy, you can build your project for production. This command will compile and minify your CSS and JavaScript files, creating an optimized version of your project in the dist/
directory.
npm run build