mobile design until Footer section

This commit is contained in:
2026-06-17 19:18:21 +02:00
parent e4f51ed01e
commit ad028713df
21 changed files with 260 additions and 1 deletions
View File
+53
View File
@@ -0,0 +1,53 @@
<div class="w-screen bg-ejc-dark-blue">
<div class="container mx-auto px-5 py-10 flex flex-col gap-6">
<div class="text-white font-extrabold text-2xl text-center">
Useful Information
</div>
<div class="flex flex-col gap-6">
<div
class="bg-white p-10 text-ejc-dark font-bold text-[16px] leading-[130%]">
For direct event information please download the Sportity app and insert
this password:<br />EJC2026
</div>
<div class="bg-white p-10 text-ejc-dark flex flex-col gap-6">
<div class="font-bold text-[16px] leading-[130%]">Emergency number</div>
<div class="text-[16px] leading-[130%]">112</div>
</div>
<div class="bg-white p-10 text-ejc-dark flex flex-col gap-6">
<div class="font-bold text-[16px] leading-[130%]">Nearest hospital</div>
<div class="text-[16px] leading-[160%]">
<p class="mb-3">Komárom-Esztergom Vármegyei Szent Borbála Kórház
2800</p>
<p>Tatabánya, Dózsa György út 77.</p>
</div>
</div>
<div class="bg-white p-10 text-ejc-dark flex flex-col gap-6">
<div class="font-bold text-[16px] leading-[130%]">
On-site medical services
</div>
<div class="text-[16px] leading-[130%]"></div>
</div>
<div class="bg-white p-10 text-ejc-dark flex flex-col gap-6">
<div class="font-bold text-[16px] leading-[130%]">Massage booking</div>
<div class="text-[16px] leading-[130%]"></div>
</div>
<div class="bg-white p-10 text-ejc-dark flex flex-col gap-6">
<div class="font-bold text-[16px] leading-[130%]">Currency</div>
<div class="text-[16px] leading-[160%]">
<p class="mb-3">Hungarian Forint - HUF</p>
<p>Nowadays, the average exchange rate: 1 Euro = 355 HUF</p>
</div>
</div>
<div class="bg-white p-10 text-ejc-dark flex flex-col gap-6">
<div class="font-bold text-[16px] leading-[130%]">
Weather in August
</div>
<div class="text-[16px] leading-[160%]">
August is typically the hottest month in Hungary. The temperature hits
about 30℃ during the day, falling away to a balmy 19℃ at night. On
average, there will be 2 rainy days during the month
</div>
</div>
</div>
</div>
</div>
+22
View File
@@ -0,0 +1,22 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { Information } from './information';
describe('Information', () => {
let component: Information;
let fixture: ComponentFixture<Information>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [Information],
}).compileComponents();
fixture = TestBed.createComponent(Information);
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-information',
imports: [],
templateUrl: './information.html',
styleUrl: './information.css',
})
export class Information {}