mobile design until Media section

This commit is contained in:
2026-06-17 14:13:15 +02:00
parent 103d2be218
commit e4f51ed01e
43 changed files with 525 additions and 343 deletions
View File
+4
View File
@@ -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>
+22
View File
@@ -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();
});
});
+9
View File
@@ -0,0 +1,9 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-welcome',
imports: [],
templateUrl: './welcome.html',
styleUrl: './welcome.css',
})
export class Welcome {}