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 tailwind config file inplace of old font

Example:
fontFamily: {
	inter: ["Inter", "sans-serif"], //place your font here
},
	
Step 4:

And add the Your Selected font-family to body that is font-inter in custom.scss file (rootpath :- assets/scss/tailwind/_custom.scss) file inplace of old font

Example:
body {
 @apply bg-bodybg h-full text-gray-600 dark:text-white m-0 font-inter font-normal text-sm relative;
}
	

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 sidebar.html page Path:src/components/common/sidebar/sidemenu/sidemenu.jsx 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/imgages/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 src/components/common//header/header.jsx

To remove switcher section as shown below.

<Link aria-label="anchor" href="#!" className="header-link switcher-icon ms-1" onClick={() => Switchericon()}>
<i className="bx bx-cog bx-spin header-link-icon"></i>
</Link>
Step2:

Remove theSwitcher component from the main layout follow the path src/pages/App.jsx


import Switcher from "../switcher/switcher";

<Switcher />      
		
Step3:

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

How To Remove Switcher In Landing Page ?

Step1:

Open landing.jsx component src\container\pages\landing.jsx

To remove switcher section as shown below.


<Button variant='' aria-label="anchor" type="button" className="btn btn-icon btn-success" onClick={() => Switchericon()}>
<i className="ri-settings-3-line"></i>
</Button>
Step2:

Remove theLandingswitcher component from the main layout follow the path src/pages/landinglayout.jsx


import  Landingswitcher from "../../../shared/layout-components/landingswitcher/landingswitcher";

<Landingswitcher /> 
	
Step3:

Now remove the landingswitcher component from the root folder, follow the path src/components/common/swicther/landingswitcher.jsx