Stuck can't create other views with Theme Lovelace UI

Hi, i’m using this beautiful theme Lovelace :
https://github.com/matt8707/hass-config
but i can’t create other views, i use this configuration in my ui-lovelace.yaml, at the end of my yaml file :

  • !include /config/lovelace/views/02-view_music.yaml
    so i have my view, it’s working, see below :slight_smile:

but i can only display one card for example i took the spotify custom card and i can only see this one
this is the code i used for the “02-view_music.yaml”, for example if i tried to display my lights and spotify, it only display spotify card and the backgroung is not working :

#id: 2
icon: 'mdi:music' 
name: Music
panel: true
path: music
title: Music
background: center / cover no-repeat url("/local/images/windows_logo.png") fixed

cards:
  - type: 'custom:spotify-card'
    limit: 10
    spotify_entity: media_player.spotify_umustseeit
    account: default
    grid_covers_per_row: 5
    display_style: list
    columns: 5
    show_header_toogle: false
    show_state: false
    state_color: true
#    style: |
#      ha-card {
#        border: 1px solid grey;
#        color: lightgrey;
#        border-radius: 20px;
#        font-family:;
#        font-size: 80%;
#      background: linear-gradient(3)
#      }
#      .card-header {
#        color: #98a7b9;
#        font-weight: bold;
#        font-size: 120%;
#        font-style: italic;
#      }
    title: null
    playlist_type: default
    
  - type: 'entities'
    entities:
     - entity: light.rue
     - entity: light.milieu
     - entity: light.jardin
    title: Lampes Salon

Any idea what i’m doing wrong ?

Thanks for your help