Added contents
This commit is contained in:
parent
d8057be1b4
commit
24decc9de4
52 changed files with 537 additions and 139 deletions
16
src/app/portfolio-card/portfolio-card.component.ts
Normal file
16
src/app/portfolio-card/portfolio-card.component.ts
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
import { Component } from '@angular/core';
|
||||
import {Work} from "../models/work";
|
||||
import {NgOptimizedImage} from "@angular/common";
|
||||
|
||||
@Component({
|
||||
selector: 'iov-portfolio-card',
|
||||
standalone: true,
|
||||
imports: [
|
||||
NgOptimizedImage
|
||||
],
|
||||
templateUrl: './portfolio-card.component.html',
|
||||
styleUrl: './portfolio-card.component.scss'
|
||||
})
|
||||
export class PortfolioCardComponent {
|
||||
work: Work | undefined;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue