Skip to content

Commit

Permalink
feat: add portfolio block page and compnent
Browse files Browse the repository at this point in the history
  • Loading branch information
dpaniq committed Jun 30, 2024
1 parent a3f5ea3 commit 28e4567
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/app/app.routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ export const ROUTES: Routes = [
path: 'portfolio',
title: 'Portfolio',
loadComponent: () =>
import('./pages/portfolio-page.component').then(
m => m.PortfolioPageComponent,
),
import(
'./pages/portfolio-block-page/portfolio-block-page.component'
).then(m => m.PortfolioBlockPageComponent),
},
// {
// path: 'about',
Expand Down
4 changes: 3 additions & 1 deletion src/app/pages/portfolio-page.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ import { PortfolioComponent } from '../features/portfolio/portfolio.component';
selector: 'app-portfolio-page',
standalone: true,
imports: [PortfolioComponent],
template: `<app-portfolio />`,
template: `
<app-portfolio />
`,
})
export class PortfolioPageComponent {}

0 comments on commit 28e4567

Please sign in to comment.