-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
181 lines (160 loc) · 5.01 KB
/
index.html
File metadata and controls
181 lines (160 loc) · 5.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TLBC Sp. z o.o.</title>
<meta name="description" content="TLBC Sp. z o.o. – strona w budowie. Skontaktuj się z nami pod adresem contact@tlbc.pl">
<meta name="keywords" content="TLBC, Spółka z o.o., Toruń, Technologia, Software, Konsulting">
<meta name="author" content="TLBC Sp. z o.o.">
<meta property="og:title" content="TLBC Sp. z o.o." />
<meta property="og:description" content="Strona w budowie. Skontaktuj się z nami pod adresem contact@tlbc.pl" />
<meta property="og:image" content="TLBC_Black.png" />
<meta property="og:type" content="website" />
<link rel="icon" href="favicon.ico" type="image/x-icon">
<style>
body {
font-family: Arial, sans-serif;
background: #fff;
color: #000;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
text-align: center;
overflow: hidden;
}
img {
width: 200px;
margin-bottom: 20px;
opacity: 0;
transform: scale(0.9);
animation: fadeIn 1.2s ease-out forwards;
}
h1, p, .button, .lang {
opacity: 0;
animation: fadeIn 1s ease-out forwards;
}
h1 { animation-delay: 0.3s; }
p { animation-delay: 0.6s; }
.button { animation-delay: 1s; }
.lang { animation-delay: 1.3s; }
@keyframes fadeIn {
to {
opacity: 1;
transform: none;
}
}
.button {
margin-top: 1.5em;
padding: 10px 20px;
background-color: #4db8ff;
color: #fff;
border: none;
border-radius: 5px;
font-size: 1rem;
cursor: pointer;
text-decoration: none;
display: inline-block;
}
.button:hover {
background-color: #3aa1dd;
}
.lang {
margin-top: 2em;
font-size: 0.9rem;
opacity: 0.6;
}
.lang-toggle {
position: absolute;
top: 20px;
right: 20px;
}
.lang-toggle button {
background: none;
color: #ccc;
border: none;
cursor: pointer;
font-size: 1rem;
}
.lang-toggle button.active {
font-weight: bold;
color: #4db8ff;
}
.social {
margin-top: 2em;
}
.social a {
margin: 0 10px;
display: inline-block;
}
.social img {
width: 24px;
height: 24px;
transition: transform 0.2s ease;
}
.social img:hover {
transform: scale(1.2);
}
</style>
</head>
<body>
<div class="lang-toggle">
<button id="plBtn" class="active">PL</button> |
<button id="enBtn">EN</button>
</div>
<img src="TLBC_Black.png" alt="TLBC Logo" />
<h1 id="headline">Strona w budowie</h1>
<p id="contact1">Skontaktuj się z nami: <a href="mailto:contact@tlbc.pl">contact@tlbc.pl</a></p>
<p id="contact2"><strong>UL. WŁOCŁAWSKA 167, 87-100 TORUŃ</strong></p>
<a class="button" href="https://outlook.office365.com/book/Letsdosomethinginteresting@tlbc.pl/" target="_blank" id="bookBtn">
Umów spotkanie
</a>
<div class="lang" id="footer">
<p>NIP: 9562397964</p>
<p>KRS: 0001138405</p>
<p>TLBC SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</p>
</div>
<div class="social">
<a href="https://x.com/tlbcpl" target="_blank" aria-label="X / Twitter">
<img src="icons/twitter.svg" alt="X / Twitter" />
</a>
<a href="https://www.linkedin.com/company/tlbcpl" target="_blank" aria-label="LinkedIn">
<img src="icons/linkedin.svg" alt="LinkedIn" />
</a>
<a href="https://www.facebook.com/tlbcpl" target="_blank" aria-label="Facebook">
<img src="icons/facebook.svg" alt="Facebook" />
</a>
</div>
<script>
const plBtn = document.getElementById('plBtn');
const enBtn = document.getElementById('enBtn');
const translations = {
pl: {
headline: "Strona w budowie",
contact1: "Skontaktuj się z nami: <a href='mailto:contact@tlbc.pl'>contact@tlbc.pl</a>",
contact2: "<strong>UL. WŁOCŁAWSKA 167, 87-100 TORUŃ</strong>",
bookBtn: "Umów spotkanie"
},
en: {
headline: "Page under construction",
contact1: "Contact us: <a href='mailto:contact@tlbc.pl'>contact@tlbc.pl</a>",
contact2: "<strong>WŁOCŁAWSKA 167, 87-100 TORUŃ, POLAND</strong>",
bookBtn: "Book a meeting"
}
};
function switchLang(lang) {
document.getElementById('headline').innerHTML = translations[lang].headline;
document.getElementById('contact1').innerHTML = translations[lang].contact1;
document.getElementById('contact2').innerHTML = translations[lang].contact2;
document.getElementById('bookBtn').innerHTML = translations[lang].bookBtn;
plBtn.classList.toggle('active', lang === 'pl');
enBtn.classList.toggle('active', lang === 'en');
}
plBtn.addEventListener('click', () => switchLang('pl'));
enBtn.addEventListener('click', () => switchLang('en'));
</script>
</body>
</html>