mirror of
https://github.com/adam-benyekkou/my_portfolio.git
synced 2026-01-15 20:20:09 +00:00
Refactoring contact page in smaller components
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
import { Component, input } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-link-card',
|
||||
imports: [],
|
||||
templateUrl: './link-card.component.html',
|
||||
styleUrl: './link-card.component.css',
|
||||
})
|
||||
export class LinkCardComponent {
|
||||
title = input.required<string>();
|
||||
contact_link = input.required<string>();
|
||||
description = input.required<string>();
|
||||
}
|
||||
Reference in New Issue
Block a user