init commit

This commit is contained in:
David Melendez
2026-01-14 22:32:13 +01:00
parent 29b2e1438c
commit 00cb087b68
84 changed files with 29665 additions and 1 deletions

View File

@@ -0,0 +1,26 @@
/**
* Auth Layout Component
* Clean layout for authentication pages (login, register, forgot-password)
*
* @author David Valera Melendez <david@valera-melendez.de>
* @created 2025-08-08
* @location Made in Germany 🇩🇪
*/
import { Component } from '@angular/core';
import { CommonModule } from '@angular/common';
import { RouterOutlet } from '@angular/router';
@Component({
selector: 'app-auth-layout',
standalone: true,
imports: [
CommonModule,
RouterOutlet
],
templateUrl: './auth-layout.component.html',
styleUrls: ['./auth-layout.component.css']
})
export class AuthLayoutComponent {
// Simple layout component for auth pages - no logic needed
}