Add Projects page with detail view, removed navbar entries that only led to home and made featured projects links to the new site
All checks were successful
publish.yml / publish (push) Successful in 1m9s
All checks were successful
publish.yml / publish (push) Successful in 1m9s
This commit is contained in:
15
src/pages/projects/projects.ts
Normal file
15
src/pages/projects/projects.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import { Component } from '@angular/core';
|
||||
import { RouterLink } from '@angular/router';
|
||||
import { CardComponent } from '../../components/card/card';
|
||||
import { PROJECTS, Project } from './project-data';
|
||||
|
||||
@Component({
|
||||
selector: 'app-projects',
|
||||
imports: [RouterLink, CardComponent],
|
||||
templateUrl: './projects.html',
|
||||
styleUrl: './projects.css',
|
||||
})
|
||||
export class Projects {
|
||||
readonly projects: Project[] = PROJECTS;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user