mirror of
https://github.com/Mueller-Patrick/Betterzon.git
synced 2024-11-22 14:23:57 +00:00
greeting component is done.
This commit is contained in:
parent
6c7b28b4cb
commit
b291c0b828
|
@ -0,0 +1,16 @@
|
||||||
|
<header class="masthead bg-primary text-white text-center">
|
||||||
|
<div class="container d-flex align-items-center flex-column">
|
||||||
|
<!-- Masthead Avatar Image-->
|
||||||
|
<img class="masthead-avatar mb-5" src="assets/images/Betterzon.svg" alt="..." />
|
||||||
|
<!-- Masthead Heading-->
|
||||||
|
<h1 class="masthead-heading text-uppercase mb-0"></h1>
|
||||||
|
<!-- Icon Divider-->
|
||||||
|
<div class="divider-custom divider-light">
|
||||||
|
<div class="divider-custom-line"></div>
|
||||||
|
<div class="divider-custom-icon"><i class="fas fa-star"></i></div>
|
||||||
|
<div class="divider-custom-line"></div>
|
||||||
|
</div>
|
||||||
|
<!-- Masthead Subheading-->
|
||||||
|
<p class="masthead-subheading font-weight-light mb-0"></p>
|
||||||
|
</div>
|
||||||
|
</header>
|
|
@ -0,0 +1,25 @@
|
||||||
|
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||||
|
|
||||||
|
import { GreetingInfoSliderComponent } from './greeting-info-slider.component';
|
||||||
|
|
||||||
|
describe('GreetingInfoSliderComponent', () => {
|
||||||
|
let component: GreetingInfoSliderComponent;
|
||||||
|
let fixture: ComponentFixture<GreetingInfoSliderComponent>;
|
||||||
|
|
||||||
|
beforeEach(async () => {
|
||||||
|
await TestBed.configureTestingModule({
|
||||||
|
declarations: [ GreetingInfoSliderComponent ]
|
||||||
|
})
|
||||||
|
.compileComponents();
|
||||||
|
});
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
fixture = TestBed.createComponent(GreetingInfoSliderComponent);
|
||||||
|
component = fixture.componentInstance;
|
||||||
|
fixture.detectChanges();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should create', () => {
|
||||||
|
expect(component).toBeTruthy();
|
||||||
|
});
|
||||||
|
});
|
|
@ -0,0 +1,15 @@
|
||||||
|
import { Component, OnInit } from '@angular/core';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'app-greeting-info-slider',
|
||||||
|
templateUrl: './greeting-info-slider.component.html',
|
||||||
|
styleUrls: ['./greeting-info-slider.component.css']
|
||||||
|
})
|
||||||
|
export class GreetingInfoSliderComponent implements OnInit {
|
||||||
|
|
||||||
|
constructor() { }
|
||||||
|
|
||||||
|
ngOnInit(): void {
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user