mobile design until Media section
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
<div
|
||||
class="bg-ejc-orange py-10 px-5 text-center text-white font-extrabold text-2xl leading-[130%]">
|
||||
Welcome to the 2026 Europen Junior Championships in Tatabánya, Hungary!
|
||||
</div>
|
||||
@@ -0,0 +1,22 @@
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { Welcome } from './welcome';
|
||||
|
||||
describe('Welcome', () => {
|
||||
let component: Welcome;
|
||||
let fixture: ComponentFixture<Welcome>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [Welcome],
|
||||
}).compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(Welcome);
|
||||
component = fixture.componentInstance;
|
||||
await fixture.whenStable();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
@@ -0,0 +1,9 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-welcome',
|
||||
imports: [],
|
||||
templateUrl: './welcome.html',
|
||||
styleUrl: './welcome.css',
|
||||
})
|
||||
export class Welcome {}
|
||||
Reference in New Issue
Block a user