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;
}
In your Angular project, you can easily add menus to the sidebar by modifying the MENUITEMS array in the navservice.ts (src\app\shared\services\navservice.ts) file. The sidebar will dynamically display the menus based on the contents of this array.
Path:src\app\shared\services\navservice.ts and go through
Inside the MENUITEMS array, you can add your menu items using the following format:
{
title: 'Your Menu Title',
icon: 'icon-name',
type: 'link', // or 'sub', 'mega-menu', 'external', 'empty'
path: '/path-to-route', // Specify the route path for link type
active: false,
Menusub: true,
badgeClass: 'badge-class', // (optional) Add a badge to the menu item
badgeValue: 'Badge Text', // (optional) Text to display in the badge
}
Inside the MENUITEMS array, you can add your menu items using the following format:
{
title: 'Your Menu Title',
icon: 'icon-name',
type: 'link', // or 'sub', 'mega-menu', 'external', 'empty'
active: false,
badgeClass: 'badge-class', // (optional) Add a badge to the menu item
badgeValue: 'Badge Text', // (optional) Text to display in the badge
children: [
// (optional) Define child items for sub-menu or mega-menu type
{
path: '/child-path',
title: 'Child Menu Title',
type: 'link',
},
// Add more child items if needed
],
}
After adding your menu items, save the changes made to the nav.service.ts (src\app\shared\services\navservice.ts) file.
he sidebar will now automatically display the added menu items based on the modifications you made in the MENUITEMS array.
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 switcher.ts file
src\app\shared\components\switcher\switcher.ts
To clear LocalStorage loading functions you need to remove localStorageBackup(); function in switcher.ts as shown below
export function localStorageBackUp() {
...
}
To remove complete LocalStorage saving you need to remove
all localstorage related calling functions in
switcher.ts
src\app\shared\components\switcher\switcher.tsfile.
LocalStorage related functions like localStorage.setItem, localStorage.removeItem, localStorage.getItem, localStorage.clear. Below are the some examples to find out.
localStorage.setItem( );
localStorage.removeItem( );
localStorage.getItem( )
localStorage.clear();
localStorageBackup();
Open header.html file
src\app\components\page\landing\landing.component.html
To remove switcher icons remove below code shown in landing.component.html file
<div class="switcher-icon">
<button
aria-label="button"
type="button"
class="hs-dropdown-toggle inline-flex flex-shrink-0 justify-center items-center gap-2 h-[2.375rem] w-[2.375rem] rounded-full font-medium bg-gray-100 hover:bg-gray-200 text-gray-500 align-middle focus:outline-none focus-visible:outline-none focus:ring-0 focus:ring-gray-400 focus:ring-offset-0 focus:ring-offset-white transition-all text-xs dark:bg-bgdark dark:hover:bg-black/20 dark:text-white/70 dark:hover:text-white dark:focus:ring-white/10 dark:focus:ring-offset-white/10"
data-hs-overlay="#hs-overlay-switcher">
<i class="ri-settings-5-line header-icon animate-spin">
</button>
</div>
Note : After completing above steps please run gulp command to update src folder.
Remove below shown code inapp-landing of landing.component.html file Path:src\app\components\page\landing\landing.component.html
<a
aria-label="anchor"
href="javascript:void(0);"
class="ti-btn m-0 p-2 px-3 ti-btn-secondary"
data-hs-overlay="#hs-overlay-switcher">
<i class="ri-settings-2-line animate-spin">