feat(landing-page): add welcome bonus and game carousel
This commit is contained in:
		
					parent
					
						
							
								b2f4d9d0d8
							
						
					
				
			
			
				commit
				
					
						8e986727ec
					
				
			
		
					 5 changed files with 208 additions and 12 deletions
				
			
		| 
						 | 
				
			
			@ -1,4 +1,4 @@
 | 
			
		|||
<footer class="bg-deep-blue-contrast mt-auto">
 | 
			
		||||
<footer class="bg-deep-blue mt-auto">
 | 
			
		||||
  <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8">
 | 
			
		||||
    <div class="grid grid-cols-2 md:grid-cols-4 lg:grid-cols-6 gap-8">
 | 
			
		||||
      <div class="col-span-2 md:col-span-1">
 | 
			
		||||
| 
						 | 
				
			
			@ -106,6 +106,10 @@
 | 
			
		|||
    <div class="mt-12 pt-8 border-t border-deep-blue-light">
 | 
			
		||||
      <div class="flex flex-col md:flex-row justify-between items-center">
 | 
			
		||||
        <div class="text-gray-400 text-sm mb-4 md:mb-0">
 | 
			
		||||
          <span class="text-xs">
 | 
			
		||||
            <span class="text-emerald">*</span> nicht vorhanden.
 | 
			
		||||
          </span>
 | 
			
		||||
          <br>
 | 
			
		||||
          © {{ currentYear }} Trustworthy Casino. Keine Rechte vorbehalten.
 | 
			
		||||
        </div>
 | 
			
		||||
      </div>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,4 +1,3 @@
 | 
			
		|||
import { AsyncPipe } from '@angular/common';
 | 
			
		||||
import { ChangeDetectionStrategy, Component, inject } from '@angular/core';
 | 
			
		||||
import { RouterModule } from '@angular/router';
 | 
			
		||||
import { KeycloakService } from 'keycloak-angular';
 | 
			
		||||
| 
						 | 
				
			
			@ -7,7 +6,7 @@ import { KeycloakService } from 'keycloak-angular';
 | 
			
		|||
  selector: 'app-navbar',
 | 
			
		||||
  templateUrl: './navbar.component.html',
 | 
			
		||||
  standalone: true,
 | 
			
		||||
  imports: [RouterModule, AsyncPipe],
 | 
			
		||||
  imports: [RouterModule],
 | 
			
		||||
  changeDetection: ChangeDetectionStrategy.OnPush,
 | 
			
		||||
})
 | 
			
		||||
export class NavbarComponent {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Reference in a new issue