Added more components

This commit is contained in:
Lorenzo Iovino 2023-12-29 04:34:47 +01:00
parent b48ab87cc6
commit d8057be1b4
28 changed files with 436 additions and 31 deletions

View file

@ -1,17 +0,0 @@
import {Component, Input} from '@angular/core';
import {ButtonCtaComponent} from "../button-cta/button-cta.component";
@Component({
selector: 'iov-card',
standalone: true,
imports: [
ButtonCtaComponent
],
templateUrl: './card.component.html',
styleUrl: './card.component.scss'
})
export class CardComponent {
@Input() color: 'light' | 'dark' = 'light';
@Input() ctaUrl: string = '';
}