Dashboard Logo
-
The Logo component can be found in the
{with your own logo SVG image OR logo image URL.{> src/components/partials/widget/logo.hbs }} -
Then user has to call logo component wherever logo has to show eg.
{{> public/assets/images/ }}
You can add a image URL icon to your Website using the following code:
<template>
<div class="logo-main">
<img class="logo-normal img-fluid mb-3" src="/assets/images/logo.png" height="30" alt="logo">
<span class="ms-2 brand-name">XRay</span>
</div>
</template>
You can call logo component wherever logo has to show:
<router-link to="/" class="navbar-brand me-5 pt-3">
<Logo/>
</router-link>