Added dummy content and deployment things

This commit is contained in:
2026-04-05 00:09:58 +02:00
parent bebe21446d
commit ad94655967
26 changed files with 1000 additions and 357 deletions

View File

@@ -0,0 +1,11 @@
:host {
display: block;
}
:host(.card) {
display: block;
padding: 1.2rem;
border: 1px solid #30363d;
border-radius: 14px;
background: #161b22;
}

View File

@@ -0,0 +1,2 @@
<ng-content></ng-content>

View File

@@ -0,0 +1,19 @@
import { Component, Input } from '@angular/core';
@Component({
selector: 'app-card',
imports: [],
templateUrl: './card.html',
styleUrl: './card.css',
host: {
'[class]': 'hostClassName',
},
})
export class CardComponent {
@Input() cardClass = '';
get hostClassName(): string {
return this.cardClass ? `card ${this.cardClass}` : 'card';
}
}