Added a lot of components
This commit is contained in:
parent
08f8d90f3d
commit
c94493a3c5
68 changed files with 1030 additions and 8 deletions
18
src/app/footer/footer.component.html
Normal file
18
src/app/footer/footer.component.html
Normal 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/>I’ll 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>
|
||||
0
src/app/footer/footer.component.scss
Normal file
0
src/app/footer/footer.component.scss
Normal file
23
src/app/footer/footer.component.spec.ts
Normal file
23
src/app/footer/footer.component.spec.ts
Normal 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();
|
||||
});
|
||||
});
|
||||
15
src/app/footer/footer.component.ts
Normal file
15
src/app/footer/footer.component.ts
Normal 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 {
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue