Frequent Ask Question's
General Style

How to Change Font Style ?

Step 1:

Go To style.scss (public/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(public/assets/scss/_variables.scss)

Example:

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

How to change Menu icons ?

By default menu icons are Boxicons if you want to change icons please follow below steps
Step 1 :

To change SideMenu.jsx, open sidebar.html page Path:src\common\SideMenu.jsx and go through Arrey objects section, in that section you will find icon class icon: 'ti-home', inside the items array there you can replace your icon class. Example as shown in below

	
		
			
		

How to Change Logo ?

Go To "public/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.jsx component shared/layout-components/header/header.js

To remove switcher section as shown below.



<Link href="#!" className="header-link switcher-icon"onClick={handleSwitcherClick}>
<i className="fe fe-settings header-link-icon"></i> </Link>

<Switcher show={showSwitcher} onClose={() => setShowSwitcher(false)} />


//Switcher functionality

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

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

Step2:

Remove theSwitcher component from the main layout follow the path components/content-layout/layout.js


			import Landingswitcher from '@/shared/layout-components/swicther/landing-switcher';
			
			<Landingswitcher /> 
				
Step3:

Now remove the switcher component and switcherData file from the root folder, follow the path Switcher component
root:shared/layout-components/switcher/switcher.js and swirtcherdata file from root:shared/data/switcherdata/switcherdata.js