Change Logo

Change light Logo

To change logo : packages/main/components/lc/Full/logo/LogoLight.vue
Put the logo image into the /images/logos folder.
                    
<script setup lang="ts">
import { RouterLink } from 'vue-router';

</script>
  <template>
      <div class="logo">
          <NuxtLink to="/" class="d-flex" >
            <img :src="/images/logos/logolight.svg" alt="logo" />
          </NuxtLink>
      </div>
  </template>
      
                        

Change Dark Logo

To change logo : packages/main/components/lc/Full/logo/LogoDark.vue
Put the logo image into the /images/logos folder.
                    
<script setup lang="ts">
  import { RouterLink } from 'vue-router';
</script>
<template>
    <div class="logo">
        <NuxtLink to="/" class="d-flex">
            <img :src="/images/logos/logo.svg" alt="logo" />
        </NuxtLink>
    </div>
</template>
      
                        

Change RTL Logo

To change logo : packages/main/components/lc/Full/logo/LogoDark.vue
Put the logo image into the /images/logos folder.
                    
<script setup lang="ts">
  import { RouterLink } from 'vue-router';
</script>
<template>
    <div class="logo">
        <NuxtLink to="/" class="d-flex">
            <img :src="/images/logos/Rtllogo.svg" alt="logo" />
        </NuxtLink>
    </div>
</template>