Getting Started: Installing Your Template

Follow these steps to get started with the template:

  1. Select Your Template Folder:
    • Choose either the Landing Page or Dashboard folder based on your needs to find all the template files
  2. Upload Files to Your Server:
    • Use FTP to upload the files to your server.
  3. Maintain the Folder Structure:
    • Ensure you maintain the structure while uploading the required files/folders:
    Landing folder:
    react/
    ├── public/
    │   ├── assets/
    │   │   └──  images/
    │   │   │   └── All Images
    │   │   └── vendor
    src/
    │   ├── assets/
    │   │   └──  vendor/
    │   │   │   └── All third party plugin
    │   │   └──  scss/
    │   │   │   └── All Css
    │   │   └── custom
    │   ├── components/
    │   │   └── All Components
    │   ├── layout/
    │   │   └── All Layouts file
    │   ├── lang
    │   ├── router/
    │   │   └── Index Route File    
    │   ├── staticData/
    │   │   └── staticData File
    │   ├── store/
    │   │   └── Storage File
    │   ├── utilities/
    │   │   └── All Utilities
    │   ├── views/
    │   │   └── All View Files
    └── package.json
    └── .gitignore
    └── index.html
    └── .htaccess
    └── vitconfiq.js
    
    Dashboard Folder:
    react/
    ├── public/
    │   ├── assets/
    │   │   └──  images/
    │   │   │   └── All Images
    │   │   └── vendor
    src/
    │   ├── assets/
    │   │   └──  custom/
    │   │   │   └── All Custom Css
    │   │   └──  scss/
    │   │   │   └── All Css
    │   │   └── vendor
    │   │   │   └── All third party plugin
    │   ├── components/
    │   │   └── All Components
    │   ├── hooks
    │   ├── lang
    │   ├── layout/
    │   │   └── All Layouts file
    │   ├── router/
    │   │   └── Index Route File
    │   ├── store/
    │   │   └── Storage File
    │   ├── utilities/
    │   │   └── All Utilities
    │   ├── views/
    │   │   └── All View Files
    └── package.json
    └── .gitignore
    └── index.html
    └── .htaccess
    └── vitconfiq.js
    └── tsconfiq.js
    
    Note: Other files can be used according to your convenience.
  4. Completion.
    • Now that you have followed these steps, your basic installation is complete. Your site or dashboard is ready to be showcased to the world!