FAQS
General Style

How to Change Font Style ?

Step 1:

Go To style.scss (src/assets/scss/styles.scss )

if you want to change another font-family Go to the site Google Fonts And Select One font Family and import in to styles.scss file

How to Select font Family

Example:

Step 2:

And paste Your Selected font-family in style.scss

Example:

Step 3:

And add the Your Selected font-family in _variables.scss(src/assets/scss/_variables.scss)

Example:

--default-font-family:    							'Roboto', sans-serif;
		
	

How to change Menu icons ?

By default menu icons are in the from remix icon if you want to change the icons please follow below steps
Step 1 :

To change Menu icons, open nav.tsx page Path: shared\layout-components\sidebar\nav.tsx and go through app-sidebar section, in that section you will find icontag, there you can replace previous icon with your icon. Example as shown in below

	
		
			
		

How to Change Logo ?

Go To "src/assets/images/brand-logos" folder and replace your logo with Previous Logos within in image size. note: Please don't increase logo sizes. Replace your logo within given image size. otherwise the logo will not fit in particular place it disturbs the template design.

Disabling Switcher

How To Disable Switcher In All Pages ?

Step1:

Open header.tsx component src/components/layout-components/header/header.tsx

To remove switcher section as shown below.


<div className="header-element">
<Link to="#" className="header-link switcher-icon" onClick={handleSwitcherClick}>
<i className="fe fe-settings header-link-icon"></i> </Link>
<Switcher show={showSwitcher} onClose={() => setShowSwitcher(false)} />
</div>

//Switcher functionality

const [showSwitcher, setShowSwitcher] = useState(false);

const handleSwitcherClick = () => {
  setShowSwitcher(true);
};
Step2:

Remove the switcher component from the main layout follow the path src/layouts/App.tsx


import Switcher from 'src/components/layout-components/switcher/switcher.tsx';

<Switcher />
			
Step3:

Now remove the switcher component and switcherData file from the root folder, follow the path Switcher component src/components/layout-components/switcher/switcher.tsx and switcherdata file from src/components/common/switcherdata.tsx

Note : After completing above steps please run the command to update dist folder.