Initial setup ontvlambaar

This commit is contained in:
2024-10-22 21:45:09 +02:00
parent 57c5d30bba
commit 31e443ba5d
22 changed files with 257 additions and 367 deletions

View File

@@ -0,0 +1,3 @@
<span>logo</span>
<h1>Ontvlambaar</h1>
<span class="slogan">Jullie het vuur, wij de branding</span>

View File

@@ -0,0 +1,11 @@
:host {
height: 30rem;
min-height: 30rem;
flex-direction: column;
justify-content: center;
align-items: center;
}
.slogan {
font-size: 3.5rem;
}

View File

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

View File

@@ -0,0 +1,12 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-hero',
standalone: true,
imports: [],
templateUrl: './hero.component.html',
styleUrl: './hero.component.scss'
})
export class HeroComponent {
}