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

And paste Your Selected font-family in style.scss

And add the Your Selected font-family in tailwind config file inplace of old font
fontFamily: {
inter: ["Inter", "sans-serif"], //place your font here
},
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
body {
@apply bg-bodybg h-full text-gray-600 dark:text-white m-0 font-inter font-normal text-sm relative;
}
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
Go To "src/assets/img/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.
Open header.jsx component src\components\common\header\header.jsx
To remove switcher section as shown below.
<div className="switcher-icon">
<Link to="#" className="header-link switcher-icon" data-bs-toggle="offcanvas" data-bs-target="#switcher-canvas"
onClick={() => Switchericon()}
>
<i className="bx bx-cog header-link-icon">/i>
</Link>
Remove theSwitcher component from the main layout follow the path src\pages\App.jsx
import Switcher from "../components/common/switcher/switcher";
<Switcher />
Now remove the switcher component and switcherData file from the root folder, follow the path Switcher component src\components\common\switcher and
Open landing.jsx component src\container\pages\landing\landing.jsx
To remove switcher section as shown below.
<Button variant='' className="btn btn-wave btn-icon btn-light" data-bs-toggle="offcanvas"
onClick={() => Switchericon()} data-bs-target="#switcher-canvas">
<i className="ri-settings-3-line"></i>
</Button>
Remove theLandingSwitcher component from the main layout follow the path src\pages\landinglayout.jsx
import Landingswitcher from '../components/common/switcher/landingswitcher';
<Landingswitcher />
Now remove the landingswitcher component from the root folder, follow the path src\components\common\switcher\landingswitcher.jsx and