Added a lot of components

This commit is contained in:
Lorenzo Iovino 2023-12-29 03:06:56 +01:00
parent 08f8d90f3d
commit c94493a3c5
68 changed files with 1030 additions and 8 deletions

View file

@ -0,0 +1,6 @@
<div class="relative">
<div class="mx-auto">
<ng-content>
</ng-content>
</div>
</div>

View file

View file

@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { PageComponent } from './page.component';
describe('PageComponent', () => {
let component: PageComponent;
let fixture: ComponentFixture<PageComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [PageComponent]
})
.compileComponents();
fixture = TestBed.createComponent(PageComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

View file

@ -0,0 +1,15 @@
import { Component } from '@angular/core';
import {FooterComponent} from "../footer/footer.component";
@Component({
selector: 'iov-page',
standalone: true,
imports: [
FooterComponent
],
templateUrl: './page.component.html',
styleUrl: './page.component.scss'
})
export class PageComponent {
}