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,18 @@
<div class="bottom-0 bg-secondary w-full flex flex-col">
<iov-card [ctaUrl]="'hello'"
class="mr-8 ml-8 relative -top-12">
<span left>
<span class="text-accent"> Talk is cheap</span>
</span>
<span center>
Interested in working together? <br/> We should queue up a <b class="text-accent">time to chat</b>. <br/>Ill buy the coffee :)
</span>
<span right>
Let's Talk!
</span>
</iov-card>
<div class="text-center text-white p-4">
Footer
Website made with etc...
</div>
</div>

View file

View file

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

View file

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