Countdown added

This commit is contained in:
2022-01-04 23:39:58 +01:00
parent 58fac0aa1e
commit 6ae3e86cb9
14 changed files with 591 additions and 275 deletions

View File

View File

@@ -0,0 +1,59 @@
<p>Navbar works</p>
<!-- NAVBAR -->
<!--===============================================================-->
<nav class="navbar fixed-top navbar-expand-sm justify-content-center navbar-light bg-light">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Unser Fest</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Bilder</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Wunschbüechli</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Anmeldung zum Fest</a>
</li>
</ul>
</nav>
<!-- NAVBAR END -->
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />

View File

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

View File

@@ -0,0 +1,15 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-navbar',
templateUrl: './navbar.component.html',
styleUrls: ['./navbar.component.css']
})
export class NavbarComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
}