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 _variables.scss(src/assets/scss/_variables.scss)
--default-font-family: 'Roboto', sans-serif;
To change Menu icons, open nav.js page
Path: src\lib\components\layout-components\sidebar\nav.ts
and go
through app-sidebar section, in that section you will find
icon
tag, there you can replace previous icon with your
icon. Example as shown in below
Go To "static/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.
Open Header.svelte component
src\lib\components\layout-components\header\Header.svelte
To remove switcher section as shown below.
<a
class="header-link switcher-icon btn btn-"
data-bs-toggle="offcanvas"
data-bs-target="#switcher-canvas"
href="#!"
onclick={toggle}>
</a >
Remove the switcher
component from the main layout
follow the path
src\routes\(common-layout)/+layout.svelte
import Switcher from "$lib/components/layout-components/switcher/Switcher.svelte";
// offcanvas handling via props
let isOpen: boolean = false;
const toggle = () => (isOpen = !isOpen);
<Switcher {isOpen} {toggle} />
Now remove the switcher component and switcher file from the
root folder, follow the path
Switcher component $lib/components/layout-components/switcher/
Note : After completing
above steps please run sass command
the command
to update dist folder.(npm run sass
)