Added a lot of components
This commit is contained in:
parent
e6f42eaa37
commit
b48ab87cc6
68 changed files with 1030 additions and 8 deletions
7
src/app/pages/portfolio/portfolio.page.html
Normal file
7
src/app/pages/portfolio/portfolio.page.html
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<iov-page>
|
||||
<iov-section [title]="'Portfolio'"
|
||||
[backgroundImageUrl]="'/assets/section-hobby.png'">
|
||||
</iov-section>
|
||||
|
||||
<p>My works</p>
|
||||
</iov-page>
|
||||
0
src/app/pages/portfolio/portfolio.page.scss
Normal file
0
src/app/pages/portfolio/portfolio.page.scss
Normal file
23
src/app/pages/portfolio/portfolio.page.spec.ts
Normal file
23
src/app/pages/portfolio/portfolio.page.spec.ts
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { PortfolioPage } from './portfolio.page';
|
||||
|
||||
describe('WorksComponent', () => {
|
||||
let component: PortfolioPage;
|
||||
let fixture: ComponentFixture<PortfolioPage>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [PortfolioPage]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(PortfolioPage);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
19
src/app/pages/portfolio/portfolio.page.ts
Normal file
19
src/app/pages/portfolio/portfolio.page.ts
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
import { Component } from '@angular/core';
|
||||
import {SectionComponent} from "../../section/section.component";
|
||||
import {PageComponent} from "../../page/page.component";
|
||||
import {FooterComponent} from "../../footer/footer.component";
|
||||
|
||||
@Component({
|
||||
selector: 'iov-portfolio-page',
|
||||
standalone: true,
|
||||
imports: [
|
||||
SectionComponent,
|
||||
PageComponent,
|
||||
FooterComponent
|
||||
],
|
||||
templateUrl: './portfolio.page.html',
|
||||
styleUrl: './portfolio.page.scss'
|
||||
})
|
||||
export class PortfolioPage {
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue