Explorar el Código

done with overall home, navigation and footer structure and design

staging
AzriIchik hace 2 meses
padre
commit
1ca0634c68

BIN
public/assets/Group 6777.jpg Ver fichero


BIN
public/assets/Group 6778.jpg Ver fichero


BIN
public/assets/Group 6779.jpg Ver fichero


BIN
public/assets/Group 6780.jpg Ver fichero


BIN
public/assets/Group 6781.jpg Ver fichero


BIN
public/assets/Mask Group 3.png Ver fichero


BIN
public/assets/Mask Group 6.png Ver fichero


public/assets/8.jpg → public/assets/image/8.jpg Ver fichero


public/assets/Group 6741.jpg → public/assets/image/Group_6741.jpg Ver fichero


public/assets/Group 6742.jpg → public/assets/image/Group_6742.jpg Ver fichero


public/assets/Group 6775.jpg → public/assets/image/Group_6775.jpg Ver fichero


public/assets/Mask Group 1.png → public/assets/image/appstore.png Ver fichero


public/assets/1.png → public/assets/image/dblogo.png Ver fichero


BIN
public/assets/image/dbparticle3.png Ver fichero


public/assets/Group 6720.png → public/assets/image/gplay.png Ver fichero


+ 425
- 4
public/css/main.css Ver fichero

@@ -1,16 +1,26 @@
1
-@import url(https://fonts.cdnfonts.com/css/druk-text-wide-trial);
1
+@import url(https://db.onlinewebfonts.com/c/2206d6cc490084998d531e8c1b2cbb4a?family=Druk+Wide+Bold);
2
+@import url(https://fonts.googleapis.com/css?family=Poppins);
2 3
 :root{
3 4
     --primary-clr: #67EB47;
4 5
     --dark-clr: #000;
5 6
     --light-clr: #FFF;
6 7
 }
7 8
 
9
+*{
10
+    padding: 0;
11
+    margin: 0;
12
+}
13
+
14
+body{
15
+    font-family: 'Poppins'
16
+}
17
+
8 18
 .text-db{
9 19
     color: var(--primary-clr);
10 20
 }
11 21
 
12 22
 .text-highlight{
13
-    font-family: 'Druk Text Wide Trial', sans-serif !important;
23
+    font-family: "Druk Wide Bold" !important;
14 24
 }
15 25
 
16 26
 .db-btn {
@@ -39,19 +49,32 @@
39 49
     color: var(--primary-clr);
40 50
 }
41 51
 
42
-p{
52
+.db-p{
53
+    font-size: clamp(0.9rem,1vw,1.2rem);
54
+    line-height: 2rem;
55
+}
56
+
57
+.db-h5{
43 58
     font-size: clamp(18px,1.2vw,23px);
44 59
     line-height: 3rem;
45 60
 }
46 61
 
47 62
 .db-h3{
48 63
     font-size: clamp(2rem,2.3vw,3.5rem);
49
-    font-size: 500;
64
+    font-weight: 500;
65
+}
66
+
67
+.db-h6{
68
+    font-size: clamp(1.25rem,1vw,1.75rem);
69
+    font-weight: 500;
50 70
 }
51 71
 
52 72
 .about-paragraph{
53 73
     width: 100%;
74
+}
54 75
 
76
+.feature-paragraph{
77
+    width: 100%;
55 78
 }
56 79
 
57 80
 .section3-img{
@@ -62,15 +85,413 @@ p{
62 85
     border: 1px solid gray;
63 86
 }
64 87
 
88
+.db-input{
89
+    background-color: black;
90
+    padding: 1.125rem 0;
91
+    border: none;
92
+    color: var(--light-clr);
93
+    border-bottom: 2px solid var(--primary-clr);
94
+    width: 100%;
95
+    font-size: 18px;
96
+
97
+}
98
+
99
+.db-input::-moz-placeholder {
100
+    color: var(--light-clr);
101
+    opacity: 1; /* Firefox */
102
+}
103
+
104
+.db-input::placeholder {
105
+    color: var(--light-clr);
106
+    opacity: 1; /* Firefox */
107
+}
108
+
109
+.db-input:focus-visible{
110
+    outline: none;
111
+}
112
+
65 113
 @media (min-width: 768px) {
66 114
 
67 115
     .about-paragraph{
68 116
         width: 70%;
69 117
     }
70 118
 
119
+    .feature-paragraph{
120
+        width: 80%;
121
+    }
122
+
71 123
     .section3-img{
72 124
         background-position: center;
73 125
     }
74 126
 
75 127
 }
76 128
 
129
+/* UTILS */
130
+.py-6{
131
+    padding-top: 4.5rem;
132
+    padding-bottom: 4.5rem;
133
+}
134
+
135
+.py-7{
136
+    padding-top: 5rem;
137
+    padding-bottom: 5rem;
138
+}
139
+
140
+.my-7{
141
+    margin-top: 5rem;
142
+    margin-bottom: 5rem;
143
+}
144
+
145
+/* NORMALIZE CSS */
146
+/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
147
+
148
+/* Document
149
+   ========================================================================== */
150
+
151
+/**
152
+ * 1. Correct the line height in all browsers.
153
+ * 2. Prevent adjustments of font size after orientation changes in iOS.
154
+ */
155
+
156
+ html {
157
+    line-height: 1.15; /* 1 */
158
+    -webkit-text-size-adjust: 100%; /* 2 */
159
+  }
160
+
161
+  /* Sections
162
+     ========================================================================== */
163
+
164
+  /**
165
+   * Remove the margin in all browsers.
166
+   */
167
+
168
+  body {
169
+    margin: 0;
170
+  }
171
+
172
+  /**
173
+   * Render the `main` element consistently in IE.
174
+   */
175
+
176
+  main {
177
+    display: block;
178
+  }
179
+
180
+  /**
181
+   * Correct the font size and margin on `h1` elements within `section` and
182
+   * `article` contexts in Chrome, Firefox, and Safari.
183
+   */
184
+
185
+  h1 {
186
+    font-size: 2em;
187
+    margin: 0.67em 0;
188
+  }
189
+
190
+  /* Grouping content
191
+     ========================================================================== */
192
+
193
+  /**
194
+   * 1. Add the correct box sizing in Firefox.
195
+   * 2. Show the overflow in Edge and IE.
196
+   */
197
+
198
+  hr {
199
+    box-sizing: content-box; /* 1 */
200
+    height: 0; /* 1 */
201
+    overflow: visible; /* 2 */
202
+  }
203
+
204
+  /**
205
+   * 1. Correct the inheritance and scaling of font size in all browsers.
206
+   * 2. Correct the odd `em` font sizing in all browsers.
207
+   */
208
+
209
+  pre {
210
+    font-family: monospace, monospace; /* 1 */
211
+    font-size: 1em; /* 2 */
212
+  }
213
+
214
+  /* Text-level semantics
215
+     ========================================================================== */
216
+
217
+  /**
218
+   * Remove the gray background on active links in IE 10.
219
+   */
220
+
221
+  a {
222
+    background-color: transparent;
223
+  }
224
+
225
+  /**
226
+   * 1. Remove the bottom border in Chrome 57-
227
+   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
228
+   */
229
+
230
+  abbr[title] {
231
+    border-bottom: none; /* 1 */
232
+    text-decoration: underline; /* 2 */
233
+    -webkit-text-decoration: underline dotted;
234
+            text-decoration: underline dotted; /* 2 */
235
+  }
236
+
237
+  /**
238
+   * Add the correct font weight in Chrome, Edge, and Safari.
239
+   */
240
+
241
+  b,
242
+  strong {
243
+    font-weight: bolder;
244
+  }
245
+
246
+  /**
247
+   * 1. Correct the inheritance and scaling of font size in all browsers.
248
+   * 2. Correct the odd `em` font sizing in all browsers.
249
+   */
250
+
251
+  code,
252
+  kbd,
253
+  samp {
254
+    font-family: monospace, monospace; /* 1 */
255
+    font-size: 1em; /* 2 */
256
+  }
257
+
258
+  /**
259
+   * Add the correct font size in all browsers.
260
+   */
261
+
262
+  small {
263
+    font-size: 80%;
264
+  }
265
+
266
+  /**
267
+   * Prevent `sub` and `sup` elements from affecting the line height in
268
+   * all browsers.
269
+   */
270
+
271
+  sub,
272
+  sup {
273
+    font-size: 75%;
274
+    line-height: 0;
275
+    position: relative;
276
+    vertical-align: baseline;
277
+  }
278
+
279
+  sub {
280
+    bottom: -0.25em;
281
+  }
282
+
283
+  sup {
284
+    top: -0.5em;
285
+  }
286
+
287
+  /* Embedded content
288
+     ========================================================================== */
289
+
290
+  /**
291
+   * Remove the border on images inside links in IE 10.
292
+   */
293
+
294
+  img {
295
+    border-style: none;
296
+  }
297
+
298
+  /* Forms
299
+     ========================================================================== */
300
+
301
+  /**
302
+   * 1. Change the font styles in all browsers.
303
+   * 2. Remove the margin in Firefox and Safari.
304
+   */
305
+
306
+  button,
307
+  input,
308
+  optgroup,
309
+  select,
310
+  textarea {
311
+    font-family: inherit; /* 1 */
312
+    font-size: 100%; /* 1 */
313
+    line-height: 1.15; /* 1 */
314
+    margin: 0; /* 2 */
315
+  }
316
+
317
+  /**
318
+   * Show the overflow in IE.
319
+   * 1. Show the overflow in Edge.
320
+   */
321
+
322
+  button,
323
+  input { /* 1 */
324
+    overflow: visible;
325
+  }
326
+
327
+  /**
328
+   * Remove the inheritance of text transform in Edge, Firefox, and IE.
329
+   * 1. Remove the inheritance of text transform in Firefox.
330
+   */
331
+
332
+  button,
333
+  select { /* 1 */
334
+    text-transform: none;
335
+  }
336
+
337
+  /**
338
+   * Correct the inability to style clickable types in iOS and Safari.
339
+   */
340
+
341
+  button,
342
+  [type="button"],
343
+  [type="reset"],
344
+  [type="submit"] {
345
+    -webkit-appearance: button;
346
+  }
347
+
348
+  /**
349
+   * Remove the inner border and padding in Firefox.
350
+   */
351
+
352
+  button::-moz-focus-inner,
353
+  [type="button"]::-moz-focus-inner,
354
+  [type="reset"]::-moz-focus-inner,
355
+  [type="submit"]::-moz-focus-inner {
356
+    border-style: none;
357
+    padding: 0;
358
+  }
359
+
360
+  /**
361
+   * Restore the focus styles unset by the previous rule.
362
+   */
363
+
364
+  button:-moz-focusring,
365
+  [type="button"]:-moz-focusring,
366
+  [type="reset"]:-moz-focusring,
367
+  [type="submit"]:-moz-focusring {
368
+    outline: 1px dotted ButtonText;
369
+  }
370
+
371
+  /**
372
+   * Correct the padding in Firefox.
373
+   */
374
+
375
+  fieldset {
376
+    padding: 0.35em 0.75em 0.625em;
377
+  }
378
+
379
+  /**
380
+   * 1. Correct the text wrapping in Edge and IE.
381
+   * 2. Correct the color inheritance from `fieldset` elements in IE.
382
+   * 3. Remove the padding so developers are not caught out when they zero out
383
+   *    `fieldset` elements in all browsers.
384
+   */
385
+
386
+  legend {
387
+    box-sizing: border-box; /* 1 */
388
+    color: inherit; /* 2 */
389
+    display: table; /* 1 */
390
+    max-width: 100%; /* 1 */
391
+    padding: 0; /* 3 */
392
+    white-space: normal; /* 1 */
393
+  }
394
+
395
+  /**
396
+   * Add the correct vertical alignment in Chrome, Firefox, and Opera.
397
+   */
398
+
399
+  progress {
400
+    vertical-align: baseline;
401
+  }
402
+
403
+  /**
404
+   * Remove the default vertical scrollbar in IE 10+.
405
+   */
406
+
407
+  textarea {
408
+    overflow: auto;
409
+  }
410
+
411
+  /**
412
+   * 1. Add the correct box sizing in IE 10.
413
+   * 2. Remove the padding in IE 10.
414
+   */
415
+
416
+  [type="checkbox"],
417
+  [type="radio"] {
418
+    box-sizing: border-box; /* 1 */
419
+    padding: 0; /* 2 */
420
+  }
421
+
422
+  /**
423
+   * Correct the cursor style of increment and decrement buttons in Chrome.
424
+   */
425
+
426
+  [type="number"]::-webkit-inner-spin-button,
427
+  [type="number"]::-webkit-outer-spin-button {
428
+    height: auto;
429
+  }
430
+
431
+  /**
432
+   * 1. Correct the odd appearance in Chrome and Safari.
433
+   * 2. Correct the outline style in Safari.
434
+   */
435
+
436
+  [type="search"] {
437
+    -webkit-appearance: textfield; /* 1 */
438
+    outline-offset: -2px; /* 2 */
439
+  }
440
+
441
+  /**
442
+   * Remove the inner padding in Chrome and Safari on macOS.
443
+   */
444
+
445
+  [type="search"]::-webkit-search-decoration {
446
+    -webkit-appearance: none;
447
+  }
448
+
449
+  /**
450
+   * 1. Correct the inability to style clickable types in iOS and Safari.
451
+   * 2. Change font properties to `inherit` in Safari.
452
+   */
453
+
454
+  ::-webkit-file-upload-button {
455
+    -webkit-appearance: button; /* 1 */
456
+    font: inherit; /* 2 */
457
+  }
458
+
459
+  /* Interactive
460
+     ========================================================================== */
461
+
462
+  /*
463
+   * Add the correct display in Edge, IE 10+, and Firefox.
464
+   */
465
+
466
+  details {
467
+    display: block;
468
+  }
469
+
470
+  /*
471
+   * Add the correct display in all browsers.
472
+   */
473
+
474
+  summary {
475
+    display: list-item;
476
+  }
477
+
478
+  /* Misc
479
+     ========================================================================== */
480
+
481
+  /**
482
+   * Add the correct display in IE 10+.
483
+   */
484
+
485
+  template {
486
+    display: none;
487
+  }
488
+
489
+  /**
490
+   * Add the correct display in IE 10.
491
+   */
492
+
493
+  [hidden] {
494
+    display: none;
495
+  }
496
+
497
+

+ 420
- 4
resources/css/main.css Ver fichero

@@ -1,4 +1,6 @@
1
-@import url('https://fonts.cdnfonts.com/css/druk-text-wide-trial');
1
+@import url('https://db.onlinewebfonts.com/c/2206d6cc490084998d531e8c1b2cbb4a?family=Druk+Wide+Bold');
2
+@import url('https://fonts.googleapis.com/css?family=Poppins');
3
+
2 4
 
3 5
 :root{
4 6
     --primary-clr: #67EB47;
@@ -6,12 +8,21 @@
6 8
     --light-clr: #FFF;
7 9
 }
8 10
 
11
+*{
12
+    padding: 0;
13
+    margin: 0;
14
+}
15
+
16
+body{
17
+    font-family: 'Poppins'
18
+}
19
+
9 20
 .text-db{
10 21
     color: var(--primary-clr);
11 22
 }
12 23
 
13 24
 .text-highlight{
14
-    font-family: 'Druk Text Wide Trial', sans-serif !important;
25
+    font-family: "Druk Wide Bold" !important;
15 26
 }
16 27
 
17 28
 .db-btn {
@@ -39,19 +50,32 @@
39 50
     color: var(--primary-clr);
40 51
 }
41 52
 
42
-p{
53
+.db-p{
54
+    font-size: clamp(0.9rem,1vw,1.2rem);
55
+    line-height: 2rem;
56
+}
57
+
58
+.db-h5{
43 59
     font-size: clamp(18px,1.2vw,23px);
44 60
     line-height: 3rem;
45 61
 }
46 62
 
47 63
 .db-h3{
48 64
     font-size: clamp(2rem,2.3vw,3.5rem);
49
-    font-size: 500;
65
+    font-weight: 500;
66
+}
67
+
68
+.db-h6{
69
+    font-size: clamp(1.25rem,1vw,1.75rem);
70
+    font-weight: 500;
50 71
 }
51 72
 
52 73
 .about-paragraph{
53 74
     width: 100%;
75
+}
54 76
 
77
+.feature-paragraph{
78
+    width: 100%;
55 79
 }
56 80
 
57 81
 .section3-img{
@@ -62,14 +86,406 @@ p{
62 86
     border: 1px solid gray;
63 87
 }
64 88
 
89
+.db-input{
90
+    background-color: black;
91
+    padding: 1.125rem 0;
92
+    border: none;
93
+    color: var(--light-clr);
94
+    border-bottom: 2px solid var(--primary-clr);
95
+    width: 100%;
96
+    font-size: 18px;
97
+
98
+}
99
+
100
+.db-input::placeholder {
101
+    color: var(--light-clr);
102
+    opacity: 1; /* Firefox */
103
+}
104
+
105
+.db-input:focus-visible{
106
+    outline: none;
107
+}
108
+
65 109
 @media (min-width: 768px) {
66 110
 
67 111
     .about-paragraph{
68 112
         width: 70%;
69 113
     }
70 114
 
115
+    .feature-paragraph{
116
+        width: 80%;
117
+    }
118
+
71 119
     .section3-img{
72 120
         background-position: center;
73 121
     }
74 122
 
75 123
 }
124
+
125
+/* UTILS */
126
+.py-6{
127
+    padding-top: 4.5rem;
128
+    padding-bottom: 4.5rem;
129
+}
130
+
131
+.py-7{
132
+    padding-top: 5rem;
133
+    padding-bottom: 5rem;
134
+}
135
+
136
+.my-7{
137
+    margin-top: 5rem;
138
+    margin-bottom: 5rem;
139
+}
140
+
141
+/* NORMALIZE CSS */
142
+/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
143
+
144
+/* Document
145
+   ========================================================================== */
146
+
147
+/**
148
+ * 1. Correct the line height in all browsers.
149
+ * 2. Prevent adjustments of font size after orientation changes in iOS.
150
+ */
151
+
152
+ html {
153
+    line-height: 1.15; /* 1 */
154
+    -webkit-text-size-adjust: 100%; /* 2 */
155
+  }
156
+
157
+  /* Sections
158
+     ========================================================================== */
159
+
160
+  /**
161
+   * Remove the margin in all browsers.
162
+   */
163
+
164
+  body {
165
+    margin: 0;
166
+  }
167
+
168
+  /**
169
+   * Render the `main` element consistently in IE.
170
+   */
171
+
172
+  main {
173
+    display: block;
174
+  }
175
+
176
+  /**
177
+   * Correct the font size and margin on `h1` elements within `section` and
178
+   * `article` contexts in Chrome, Firefox, and Safari.
179
+   */
180
+
181
+  h1 {
182
+    font-size: 2em;
183
+    margin: 0.67em 0;
184
+  }
185
+
186
+  /* Grouping content
187
+     ========================================================================== */
188
+
189
+  /**
190
+   * 1. Add the correct box sizing in Firefox.
191
+   * 2. Show the overflow in Edge and IE.
192
+   */
193
+
194
+  hr {
195
+    box-sizing: content-box; /* 1 */
196
+    height: 0; /* 1 */
197
+    overflow: visible; /* 2 */
198
+  }
199
+
200
+  /**
201
+   * 1. Correct the inheritance and scaling of font size in all browsers.
202
+   * 2. Correct the odd `em` font sizing in all browsers.
203
+   */
204
+
205
+  pre {
206
+    font-family: monospace, monospace; /* 1 */
207
+    font-size: 1em; /* 2 */
208
+  }
209
+
210
+  /* Text-level semantics
211
+     ========================================================================== */
212
+
213
+  /**
214
+   * Remove the gray background on active links in IE 10.
215
+   */
216
+
217
+  a {
218
+    background-color: transparent;
219
+  }
220
+
221
+  /**
222
+   * 1. Remove the bottom border in Chrome 57-
223
+   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
224
+   */
225
+
226
+  abbr[title] {
227
+    border-bottom: none; /* 1 */
228
+    text-decoration: underline; /* 2 */
229
+    text-decoration: underline dotted; /* 2 */
230
+  }
231
+
232
+  /**
233
+   * Add the correct font weight in Chrome, Edge, and Safari.
234
+   */
235
+
236
+  b,
237
+  strong {
238
+    font-weight: bolder;
239
+  }
240
+
241
+  /**
242
+   * 1. Correct the inheritance and scaling of font size in all browsers.
243
+   * 2. Correct the odd `em` font sizing in all browsers.
244
+   */
245
+
246
+  code,
247
+  kbd,
248
+  samp {
249
+    font-family: monospace, monospace; /* 1 */
250
+    font-size: 1em; /* 2 */
251
+  }
252
+
253
+  /**
254
+   * Add the correct font size in all browsers.
255
+   */
256
+
257
+  small {
258
+    font-size: 80%;
259
+  }
260
+
261
+  /**
262
+   * Prevent `sub` and `sup` elements from affecting the line height in
263
+   * all browsers.
264
+   */
265
+
266
+  sub,
267
+  sup {
268
+    font-size: 75%;
269
+    line-height: 0;
270
+    position: relative;
271
+    vertical-align: baseline;
272
+  }
273
+
274
+  sub {
275
+    bottom: -0.25em;
276
+  }
277
+
278
+  sup {
279
+    top: -0.5em;
280
+  }
281
+
282
+  /* Embedded content
283
+     ========================================================================== */
284
+
285
+  /**
286
+   * Remove the border on images inside links in IE 10.
287
+   */
288
+
289
+  img {
290
+    border-style: none;
291
+  }
292
+
293
+  /* Forms
294
+     ========================================================================== */
295
+
296
+  /**
297
+   * 1. Change the font styles in all browsers.
298
+   * 2. Remove the margin in Firefox and Safari.
299
+   */
300
+
301
+  button,
302
+  input,
303
+  optgroup,
304
+  select,
305
+  textarea {
306
+    font-family: inherit; /* 1 */
307
+    font-size: 100%; /* 1 */
308
+    line-height: 1.15; /* 1 */
309
+    margin: 0; /* 2 */
310
+  }
311
+
312
+  /**
313
+   * Show the overflow in IE.
314
+   * 1. Show the overflow in Edge.
315
+   */
316
+
317
+  button,
318
+  input { /* 1 */
319
+    overflow: visible;
320
+  }
321
+
322
+  /**
323
+   * Remove the inheritance of text transform in Edge, Firefox, and IE.
324
+   * 1. Remove the inheritance of text transform in Firefox.
325
+   */
326
+
327
+  button,
328
+  select { /* 1 */
329
+    text-transform: none;
330
+  }
331
+
332
+  /**
333
+   * Correct the inability to style clickable types in iOS and Safari.
334
+   */
335
+
336
+  button,
337
+  [type="button"],
338
+  [type="reset"],
339
+  [type="submit"] {
340
+    -webkit-appearance: button;
341
+  }
342
+
343
+  /**
344
+   * Remove the inner border and padding in Firefox.
345
+   */
346
+
347
+  button::-moz-focus-inner,
348
+  [type="button"]::-moz-focus-inner,
349
+  [type="reset"]::-moz-focus-inner,
350
+  [type="submit"]::-moz-focus-inner {
351
+    border-style: none;
352
+    padding: 0;
353
+  }
354
+
355
+  /**
356
+   * Restore the focus styles unset by the previous rule.
357
+   */
358
+
359
+  button:-moz-focusring,
360
+  [type="button"]:-moz-focusring,
361
+  [type="reset"]:-moz-focusring,
362
+  [type="submit"]:-moz-focusring {
363
+    outline: 1px dotted ButtonText;
364
+  }
365
+
366
+  /**
367
+   * Correct the padding in Firefox.
368
+   */
369
+
370
+  fieldset {
371
+    padding: 0.35em 0.75em 0.625em;
372
+  }
373
+
374
+  /**
375
+   * 1. Correct the text wrapping in Edge and IE.
376
+   * 2. Correct the color inheritance from `fieldset` elements in IE.
377
+   * 3. Remove the padding so developers are not caught out when they zero out
378
+   *    `fieldset` elements in all browsers.
379
+   */
380
+
381
+  legend {
382
+    box-sizing: border-box; /* 1 */
383
+    color: inherit; /* 2 */
384
+    display: table; /* 1 */
385
+    max-width: 100%; /* 1 */
386
+    padding: 0; /* 3 */
387
+    white-space: normal; /* 1 */
388
+  }
389
+
390
+  /**
391
+   * Add the correct vertical alignment in Chrome, Firefox, and Opera.
392
+   */
393
+
394
+  progress {
395
+    vertical-align: baseline;
396
+  }
397
+
398
+  /**
399
+   * Remove the default vertical scrollbar in IE 10+.
400
+   */
401
+
402
+  textarea {
403
+    overflow: auto;
404
+  }
405
+
406
+  /**
407
+   * 1. Add the correct box sizing in IE 10.
408
+   * 2. Remove the padding in IE 10.
409
+   */
410
+
411
+  [type="checkbox"],
412
+  [type="radio"] {
413
+    box-sizing: border-box; /* 1 */
414
+    padding: 0; /* 2 */
415
+  }
416
+
417
+  /**
418
+   * Correct the cursor style of increment and decrement buttons in Chrome.
419
+   */
420
+
421
+  [type="number"]::-webkit-inner-spin-button,
422
+  [type="number"]::-webkit-outer-spin-button {
423
+    height: auto;
424
+  }
425
+
426
+  /**
427
+   * 1. Correct the odd appearance in Chrome and Safari.
428
+   * 2. Correct the outline style in Safari.
429
+   */
430
+
431
+  [type="search"] {
432
+    -webkit-appearance: textfield; /* 1 */
433
+    outline-offset: -2px; /* 2 */
434
+  }
435
+
436
+  /**
437
+   * Remove the inner padding in Chrome and Safari on macOS.
438
+   */
439
+
440
+  [type="search"]::-webkit-search-decoration {
441
+    -webkit-appearance: none;
442
+  }
443
+
444
+  /**
445
+   * 1. Correct the inability to style clickable types in iOS and Safari.
446
+   * 2. Change font properties to `inherit` in Safari.
447
+   */
448
+
449
+  ::-webkit-file-upload-button {
450
+    -webkit-appearance: button; /* 1 */
451
+    font: inherit; /* 2 */
452
+  }
453
+
454
+  /* Interactive
455
+     ========================================================================== */
456
+
457
+  /*
458
+   * Add the correct display in Edge, IE 10+, and Firefox.
459
+   */
460
+
461
+  details {
462
+    display: block;
463
+  }
464
+
465
+  /*
466
+   * Add the correct display in all browsers.
467
+   */
468
+
469
+  summary {
470
+    display: list-item;
471
+  }
472
+
473
+  /* Misc
474
+     ========================================================================== */
475
+
476
+  /**
477
+   * Add the correct display in IE 10+.
478
+   */
479
+
480
+  template {
481
+    display: none;
482
+  }
483
+
484
+  /**
485
+   * Add the correct display in IE 10.
486
+   */
487
+
488
+  [hidden] {
489
+    display: none;
490
+  }
491
+

+ 145
- 54
resources/views/home.antlers.html Ver fichero

@@ -1,54 +1,3 @@
1
-<nav id="main-nav" class="navbar navbar-expand-lg px-4 px-md-5 py-4 fixed-top" style="background-color: black;">
2
-    <div class="container-fluid d-flex flex-wrap justify-between p-0">
3
-
4
-        <div class="d-none d-lg-block mx-auto mx-xxl-0">
5
-            <img src="assets/logo_1.png" class="img-fluid" style="width:70px;">
6
-                <span class="text-light text-highlight my-auto" style="font-size:23px;padding-left: 1rem;vertical-align:middle">THEBOLA</span>
7
-            </img>
8
-        </div>
9
-        <div class="mx-0 mx-lg-auto mx-xxl-0">
10
-            <div class="d-flex">
11
-                <button class="navbar-toggler" type="button" style="background-color: gray;" data-bs-toggle="collapse"
12
-                    data-bs-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false"
13
-                    aria-label="Toggle navigation">
14
-                    <span class="navbar-toggler-icon"></span>
15
-                </button>
16
-                <div class="d-inline d-lg-none mx-auto">
17
-                    <img src="assets/logo_1.png" class="img-fluid" style="width:60px;">
18
-                        <span class="text-light text-highlight my-auto" style="font-size:20px;padding-left: 1rem;vertical-align:middle">THEBOLA</span>
19
-                    </img>
20
-                </div>
21
-            </div>
22
-
23
-            <div class="collapse navbar-collapse my-auto" id="navbarNavDropdown">
24
-                <ul class="navbar-nav">
25
-                    <li class="nav-item mx-0 my-3 mx-lg-3 mx-xxl-4">
26
-                        <a class="nav-link" aria-current="page" href="#">Home</a>
27
-                    </li>
28
-                    <li class="nav-item mx-0 my-3 mx-lg-3 mx-xxl-4">
29
-                        <a class="nav-link" href="#">Booking</a>
30
-                    </li>
31
-                    <li class="nav-item mx-0 my-3 mx-lg-3 mx-xxl-4">
32
-                        <a class="nav-link" href="#">News</a>
33
-                    </li>
34
-                    <li class="nav-item mx-0 my-3 mx-lg-3 mx-xxl-4">
35
-                        <a class="nav-link" href="#">Download</a>
36
-                    </li>
37
-                    <li class="nav-item mx-0 my-3 mx-lg-3 mx-xxl-4">
38
-                        <a class="nav-link" href="#">Contact</a>
39
-                    </li>
40
-                    <li class="nav-item mx-0 my-3 mx-lg-3 mx-xxl-4">
41
-                        <a class="nav-link active" href="#">Register</a>
42
-                    </li>
43
-                    <li class="nav-item mx-0 my-3 mx-lg-3 mx-xxl-4">
44
-                        <a class="nav-link db-btn" style="padding: 0.5rem 2rem" href="#">Sign in</a>
45
-                    </li>
46
-                </ul>
47
-            </div>
48
-
49
-        </div>
50
-    </div>
51
-</nav>
52 1
 <section>
53 2
     <div class="d-flex" style="min-height: 100vh;background-image: url(./assets/image/2.jpg);background-size: cover;">
54 3
         <div class="text-light px-5 text-lg-center m-auto">
@@ -62,14 +11,156 @@
62 11
 <section>
63 12
     <div class="text-md-center text-light px-4 px-md-5 " style="background-image: url(./assets/image/3.png);background-size: cover;background-color: black;padding-top: 10rem;padding-bottom: 5rem; background-position: top center;">
64 13
         <p class="db-h3 text-highlight" style="line-height: clamp(3rem,2.5vw,4rem);">Your Football Haven Awaits: Embrace the <br/> Game at Our State-of-the-Art Field!</p>
65
-        <p class="mx-auto my-5 p-0 about-paragraph" style="line-height: clamp(1.7rem,2.5vw,3rem);">Lorem ipsum dolor sit amet consectetur adipisicing elit. Esse labore ullam error praesentium culpa quae similique, inventore laborum vel a excepturi odit voluptates illum quibusdam, commodi nostrum, tenetur perspiciatis est. Labore adipisci itaque inventore voluptatem pariatur? Quos perferendis sit quo autem praesentium nobis pariatur in! Atque, explicabo magnam! Repellat aliquam dolorem suscipit nam facere assumenda perferendis, provident, ex sapiente ea dolorum! Ipsum voluptate autem dignissimos quo sapiente sequi eius quae! autem dignissimos quo sapiente sequi eius quae autem dignissimos quo sapiente sequi eius quae autem dignissimos quo sapiente sequi eius quae</p>
14
+        <p class="mx-auto my-5 p-0 about-paragraph db-h5" style="line-height: clamp(1.7rem,2.5vw,3rem);">Lorem ipsum dolor sit amet consectetur adipisicing elit. Esse labore ullam error praesentium culpa quae similique, inventore laborum vel a excepturi odit voluptates illum quibusdam, commodi nostrum, tenetur perspiciatis est. Labore adipisci itaque inventore voluptatem pariatur? Quos perferendis sit quo autem praesentium nobis pariatur in! Atque, explicabo magnam! Repellat aliquam dolorem suscipit nam facere assumenda perferendis, provident, ex sapiente ea dolorum! Ipsum voluptate autem dignissimos quo sapiente sequi eius quae! autem dignissimos quo sapiente sequi eius quae autem dignissimos quo sapiente sequi eius quae autem dignissimos quo sapiente sequi eius quae</p>
66 15
         <button class="nav-link db-btn mx-auto" style="font-size: clamp(18px,1vw,23px);font-weight: 500;padding: 0.5rem 3rem">Read More</button>
67 16
     </div>
68 17
 </section>
69 18
 <section>
70 19
     <div style="background-image: url('./assets/image/4.jpg');" class="section3-img"></div>
71 20
 </section>
72
-<section class="bg-green-900">
73
-    <div style="min-height: 100vh;"></div>
21
+<section>
22
+    <div class="text-center text-light px-4 px-md-5 py-6" style="background-color: rgb(0, 0, 0);">
23
+        <p class="db-h3 text-highlight" style="line-height: clamp(3rem,2.5vw,4rem);">Features</p>
24
+        <p class="mx-auto p-0 db-h5" style="line-height: clamp(1.7rem,2.5vw,3rem);">Stay tuned for more latest news and articles brought exclusively by our team</p>
25
+    </div>
26
+    <div class="container-fluid p-0">
27
+        <div class="row text g-0">
28
+            <div class="col-12 py-5 text-light row g-0" style="background-image: url('./assets/image/Group_6742.jpg');background-size: cover; background-repeat: no-repeat;">
29
+                <div class="col-2 text-end">
30
+                    <i class="fa-solid fa-book-bookmark fa-2x text-db d-none d-lg-inline pe-4"></i>
31
+                </div>
32
+                <div class="col-8">
33
+                    <p class="fw-bold db-h6">Field Booking and Fixtures</p>
34
+                    <p class="db-p" style="margin-bottom: 3rem;">Lorem ipsum dolor, sit amet consectetur adipisicing elit. Iusto molestiae adipisci distinctio impedit quasi quibusdam accusamus, atque dolorem eum consequuntur assumenda voluptates vitae repellat tempora iste quam, repellendus deserunt quo culpa. Voluptate provident excepturi perferendis omnis maxime, earum eos tempora, a corrupti aspernatur est architecto. Deleniti iste quia voluptatem. Eum culpa mollitia saepe nesciunt laborum id neque nulla adipisci ab.</p>
35
+                    <p><a href="#" class="fw-bold text-light db-h6" style="text-decoration: none;">Book Now <span><i class="fa-solid fa-arrow-right ps-3 text-db fw-bold"></i></span></a></p>
36
+                </div>
37
+                <div class="col-2">
38
+                    <i class="fa-solid fa-book-bookmark fa-2x text-db d-inline d-lg-none"></i>
39
+                </div>
40
+            </div>
41
+        </div>
42
+        <div class="row text g-0">
43
+            <div class="col-md-4 py-5 text-light row g-0" style="background-image: url('./assets/image/Group_6742.jpg');background-size: cover; background-repeat: no-repeat;">
44
+                <div class="col-2 text-end">
45
+                    <i class="fa-solid fa-book-bookmark fa-2x text-db d-none d-lg-inline pe-4"></i>
46
+                </div>
47
+                <div class="col-8">
48
+                    <p class="fw-bold db-h6">Field Booking and Fixtures</p>
49
+                    <p class="db-p" style="margin-bottom: 3rem;">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam, minus. Dicta nemo magnam architecto minus facere itaque natus</p>
50
+                    <p><a href="#" class="fw-bold text-light db-h6" style="text-decoration: none;">Book Now <span><i class="fa-solid fa-arrow-right ps-3 text-db fw-bold"></i></span></a></p>
51
+                </div>
52
+                <div class="col-2">
53
+                    <i class="fa-solid fa-book-bookmark fa-2x text-db d-inline d-lg-none"></i>
54
+                </div>
55
+            </div>
56
+            <div class="col-md-4 py-5 text-light row g-0" style="background-image: url('./assets/image/Group_6742.jpg');background-size: cover; background-repeat: no-repeat;">
57
+                <div class="col-2 text-end">
58
+                    <i class="fa-solid fa-book-bookmark fa-2x text-db d-none d-lg-inline pe-4"></i>
59
+                </div>
60
+                <div class="col-8">
61
+                    <p class="fw-bold db-h6">Field Booking and Fixtures</p>
62
+                    <p class="db-p" style="margin-bottom: 3rem;">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam, minus. Dicta nemo magnam architecto minus facere itaque natus</p>
63
+                    <p><a href="#" class="fw-bold text-light db-h6" style="text-decoration: none;">Book Now <span><i class="fa-solid fa-arrow-right ps-3 text-db fw-bold"></i></span></a></p>
64
+                </div>
65
+                <div class="col-2">
66
+                    <i class="fa-solid fa-book-bookmark fa-2x text-db d-inline d-lg-none"></i>
67
+                </div>
68
+            </div>
69
+            <div class="col-md-4 py-5 text-light row g-0" style="background-image: url('./assets/image/Group_6742.jpg');background-size: cover; background-repeat: no-repeat;">
70
+                <div class="col-2 text-end">
71
+                    <i class="fa-solid fa-book-bookmark fa-2x text-db d-none d-lg-inline pe-4"></i>
72
+                </div>
73
+                <div class="col-8">
74
+                    <p class="fw-bold db-h6">Field Booking and Fixtures</p>
75
+                    <p class="db-p" style="margin-bottom: 3rem;">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam, minus. Dicta nemo magnam architecto minus facere itaque natus</p>
76
+                    <p><a href="#" class="fw-bold text-light db-h6" style="text-decoration: none;">Book Now <span><i class="fa-solid fa-arrow-right ps-3 text-db fw-bold"></i></span></a></p>
77
+                </div>
78
+                <div class="col-2">
79
+                    <i class="fa-solid fa-book-bookmark fa-2x text-db d-inline d-lg-none"></i>
80
+                </div>
81
+            </div>
82
+        </div>
83
+    </div>
84
+</section>
85
+<section>
86
+    <div class="text-light py-5" style="background-color: rgb(0, 0, 0);">
87
+        <div class="text-center ">
88
+            <p class="db-h3 text-highlight" style="line-height: clamp(3rem,2.5vw,4rem);">Recent News</p>
89
+            <p class="mx-auto p-0 db-h5 mb-5" style="line-height: clamp(1.7rem,2.5vw,3rem);">Stay tuned for more latest news and articles brought exclusively by our team</p>
90
+        </div>
91
+        <div class="row p-0 px-lg-4 px-lg-5 mb-lg-5 g-0">
92
+            <div class="col-xl-4 position-relative p-0 p-lg-3">
93
+                <div class="position-relative" style="padding-top: 80%;background-image: url(./assets/image/Group_6775.jpg);background-size: cover;background-repeat: no-repeat; background-position: center center;">
94
+                    <div class="position-absolute d-flex flex-wrap pt-4 pb-5 px-5" style="height: 100%;width: 100%;top:0;left:0">
95
+                        <p class="db-p" style="width: 100%;height: fit-content;">19 Jan 2024  |  12:23 PM</p>
96
+                        <div class="mt-auto" style="width: 100%;height: fit-content;">
97
+                            <p class="text-highlight db-h5 fw-bold" style="line-height: 1.75rem;">LOREM IPSUM <br/> DOLOR SIT AMET.</p>
98
+                            <hr class="text-db" style="width: 60px;height: 5px;opacity: 1;"/>
99
+                            <p><a href="#" class="text-light d-block" style="text-decoration: none;font-size: clamp(1.25rem,1vw,1.75rem);vertical-align: middle;">Book Now <span><i class="fa-solid fa-angle-right ps-3 text-db"></i></span></a></p>
100
+                        </div>
101
+                    </div>
102
+                </div>
103
+            </div>
104
+            <div class="col-xl-4 position-relative p-0 p-lg-3">
105
+                <div class="position-relative" style="padding-top: 80%;background-image: url(./assets/image/Group_6775.jpg);background-size: cover;background-repeat: no-repeat; background-position: center center;">
106
+                    <div class="position-absolute d-flex flex-wrap pt-4 pb-5 px-5" style="height: 100%;width: 100%;top:0;left:0">
107
+                        <p class="db-p" style="width: 100%;height: fit-content;">19 Jan 2024  |  12:23 PM</p>
108
+                        <div class="mt-auto" style="width: 100%;height: fit-content;">
109
+                            <p class="text-highlight db-h5 fw-bold" style="line-height: 1.75rem;">LOREM IPSUM <br/> DOLOR SIT AMET.</p>
110
+                            <hr class="text-db" style="width: 60px;height: 5px;opacity: 1;"/>
111
+                            <p><a href="#" class="text-light d-block" style="text-decoration: none;font-size: clamp(1.25rem,1vw,1.75rem);vertical-align: middle;">Book Now <span><i class="fa-solid fa-angle-right ps-3 text-db"></i></span></a></p>
112
+                        </div>
113
+                    </div>
114
+                </div>
115
+            </div>
116
+            <div class="col-xl-4 position-relative p-0 p-lg-3">
117
+                <div class="position-relative" style="padding-top: 80%;background-image: url(./assets/image/Group_6775.jpg);background-size: cover;background-repeat: no-repeat; background-position: center center;">
118
+                    <div class="position-absolute d-flex flex-wrap pt-4 pb-5 px-5" style="height: 100%;width: 100%;top:0;left:0">
119
+                        <p class="db-p" style="width: 100%;height: fit-content;">19 Jan 2024  |  12:23 PM</p>
120
+                        <div class="mt-auto" style="width: 100%;height: fit-content;">
121
+                            <p class="text-highlight db-h5 fw-bold" style="line-height: 1.75rem;">LOREM IPSUM <br/> DOLOR SIT AMET.</p>
122
+                            <hr class="text-db" style="width: 60px;height: 5px;opacity: 1;"/>
123
+                            <p><a href="#" class="text-light d-block" style="text-decoration: none;font-size: clamp(1.25rem,1vw,1.75rem);vertical-align: middle;">Book Now <span><i class="fa-solid fa-angle-right ps-3 text-db"></i></span></a></p>
124
+                        </div>
125
+                    </div>
126
+                </div>
127
+            </div>
128
+        </div>
129
+        <button class="nav-link db-btn mx-auto d-none d-lg-block" style="font-size: clamp(18px,1vw,23px);font-weight: 500;padding: 0.5rem 3rem">See More</button>
130
+    </div>
74 131
 </section>
132
+<section>
133
+    <div class="text-light pt-5" style="background-color: rgb(0, 0, 0);">
134
+        <div class="text-center ">
135
+            <p class="db-h3 text-highlight" style="line-height: clamp(3rem,2.5vw,4rem);">Contact Us</p>
136
+            <p class="mx-auto p-0 db-h5 mb-5" style="line-height: clamp(1.7rem,2.5vw,3rem);">If you have any questios or feedback, drop them <br/> here and we'll get back to you!</p>
137
+        </div>
138
+        <div class="row g-0">
139
+            <div class="col-lg-5 px-5 pb-5 pb-lg-0">
140
+                <input class="db-input" type="text" style="margin-top: 1.4375rem;" placeholder="Name" />
141
+                <input class="db-input" type="text" style="margin-top: 1.4375rem;" placeholder="Email" />
142
+                <input class="db-input" type="text" style="margin-top: 1.4375rem;margin-bottom: 3.21875rem;" placeholder="Message" />
143
+                <button class="nav-link db-btn" style="font-size: clamp(18px,1vw,23px);font-weight: 500;padding: 0.5rem 3rem;">Submit</button>
144
+            </div>
145
+            <div class="col-lg-7 px-5 py-5" style="background-image: url(./assets/image/8.jpg);background-size: cover; background-position: center center;">
146
+
147
+                <p class="p-0 db-h5" style="line-height: clamp(1.7rem,2.5vw,3rem);">017-978 7358 <br/> hello@thebola.club</p>
148
+                <p class="p-0 db-h5" style="line-height: clamp(1.7rem,2.5vw,3rem);">Football Park LGM SUngai Buloh, Jalan Sungai Buloh <br/> PJU4, 47000 Petaling Jaya, Selangor</p>
149
+
75 150
 
151
+            </div>
152
+        </div>
153
+    </div>
154
+</section>
155
+<section>
156
+    <div class="text-light p-5" style="background-color: rgb(0, 0, 0);background-image: url(./assets/image/dbparticle3.png);background-size: cover;background-repeat: no-repeat;background-position: center bottom;">
157
+        <div class="text-center ">
158
+            <p class="db-h3 text-highlight" style="line-height: clamp(3rem,2.5vw,4rem);">Our Mobile Apps Is Coming Soon!</p>
159
+            <p class="mx-auto p-0 db-h5 mb-5" style="line-height: clamp(1.7rem,2.5vw,3rem);">Soon all of the amazing features that we provide here will be available in<br/> an exclusive app for both android and iOS.</p>
160
+        </div>
161
+        <div class="container-fluid d-flex justify-content-center">
162
+            <img class="mx-2" src="./assets/image/gplay.png" alt="google-play-img" style="width: 200px;">
163
+            <img class="mx-2" src="./assets/image/appstore.png" alt="google-play-img" style="width: 200px;">
164
+        </div>
165
+    </div>
166
+</section>

+ 122
- 0
resources/views/layout.antlers.html Ver fichero

@@ -7,14 +7,136 @@
7 7
         <title>{{ title ?? site:name }}</title>
8 8
         <link rel="stylesheet" href="{{ mix src='css/bootstrap.css' }}">
9 9
         <link rel="stylesheet" href="{{ mix src='css/main.css' }}">
10
+        <script src="https://kit.fontawesome.com/bacccc1477.js" crossorigin="anonymous"></script>
10 11
         <script src="{{ mix src='js/bootstrap.bundle.js' }}"></script>
11 12
         <script src="{{ mix src='js/main.js' }}" defer></script>
12 13
 
13 14
     </head>
14 15
     <body class="bg-gray-100 font-sans leading-normal text-gray-800">
16
+        <header>
17
+            <nav id="main-nav" class="navbar navbar-expand-lg px-4 px-md-5 py-4 fixed-top" style="background-color: black;">
18
+                <div class="container-fluid d-flex flex-wrap justify-between p-0">
19
+
20
+                    <div class="d-none d-lg-block mx-auto mx-xxl-0">
21
+                        <img src="assets/logo_1.png" class="img-fluid" style="width:70px;">
22
+                            <span class="text-light text-highlight my-auto" style="font-size:23px;padding-left: 1rem;vertical-align:middle">THEBOLA</span>
23
+                        </img>
24
+                    </div>
25
+                    <div class="mx-0 mx-lg-auto mx-xxl-0">
26
+                        <div class="d-flex">
27
+                            <button class="navbar-toggler" type="button" data-bs-toggle="collapse"
28
+                                data-bs-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false"
29
+                                aria-label="Toggle navigation">
30
+                                <i class="text-light fa-solid fa-bars fa-xl"></i>
31
+                            </button>
32
+                            <div class="d-inline d-lg-none mx-auto">
33
+                                <img src="assets/logo_1.png" class="img-fluid" style="width:60px;">
34
+                                    <span class="text-light text-highlight my-auto" style="font-size:20px;padding-left: 1rem;vertical-align:middle">THEBOLA</span>
35
+                                </img>
36
+                            </div>
37
+                        </div>
38
+
39
+                        <div class="collapse navbar-collapse my-auto" id="navbarNavDropdown">
40
+                            <ul class="navbar-nav">
41
+                                <li class="nav-item mx-0 my-3 mx-lg-3 mx-xxl-4">
42
+                                    <a class="nav-link" aria-current="page" href="#">Home</a>
43
+                                </li>
44
+                                <li class="nav-item mx-0 my-3 mx-lg-3 mx-xxl-4">
45
+                                    <a class="nav-link" href="#">Booking</a>
46
+                                </li>
47
+                                <li class="nav-item mx-0 my-3 mx-lg-3 mx-xxl-4">
48
+                                    <a class="nav-link" href="#">News</a>
49
+                                </li>
50
+                                <li class="nav-item mx-0 my-3 mx-lg-3 mx-xxl-4">
51
+                                    <a class="nav-link" href="#">Download</a>
52
+                                </li>
53
+                                <li class="nav-item mx-0 my-3 mx-lg-3 mx-xxl-4">
54
+                                    <a class="nav-link" href="#">Contact</a>
55
+                                </li>
56
+                                <li class="nav-item mx-0 my-3 mx-lg-3 mx-xxl-4">
57
+                                    <a class="nav-link active" href="#">Register</a>
58
+                                </li>
59
+                                <li class="nav-item mx-0 my-3 mx-lg-3 mx-xxl-4">
60
+                                    <a class="nav-link db-btn" style="padding: 0.5rem 2rem" href="#">Sign in</a>
61
+                                </li>
62
+                            </ul>
63
+                        </div>
64
+
65
+                    </div>
66
+                </div>
67
+            </nav>
68
+        </header>
15 69
         <div class="mx-auto lg:min-h-screen flex flex-col items-center justify-center">
16 70
             {{ template_content }}
17 71
         </div>
72
+        <footer>
73
+            <div class="row g-0 text-light py-5" style="background-color: black;border: none;">
74
+                <div class="col-lg-3 text-center">
75
+                    <img src="./assets/image/dblogo.png" style="width: 237px;" />
76
+                </div>
77
+                <div class="col-lg-3 px-5 px-lg-0">
78
+                    <p class="text-db" style="font-size: 1.563rem;">Address</p>
79
+                    <p style="line-height: 30px; font-size: 1.25rem;font-weight: normal;">
80
+                        RRI Football Park LGM Sungai Buloh, <br/>
81
+                        Jalan Sungai Buloh, PJU4 47000 <br/>
82
+                        Petaling Jaya, Selangor.<br/>
83
+                    </p>
84
+                </div>
85
+                <div class="col-lg-4  px-5 px-lg-0 row g-0">
86
+                    <div class="col-lg-6">
87
+                        <p class="text-db" style="font-size: 1.563rem;">Phones</p>
88
+                        <p style="line-height: 30px; font-size: 1.25rem;font-weight: normal;">
89
+                            Customer Service: <br/>
90
+                            +0122274616 <br/>
91
+                        </p>
92
+                    </div>
93
+                    <div class="col-lg-6">
94
+                        <p class="text-db" style="font-size: 1.563rem;">Email</p>
95
+                        <p style="line-height: 30px; font-size: 1.25rem;font-weight: normal;">
96
+                            Office : help@thebola.club <br/>
97
+                            Site : thebola.club <br/>
98
+                        </p>
99
+                    </div>
18 100
 
101
+                </div>
102
+                <div class="col-lg-2">
103
+                    <!-- blank -->
104
+                </div>
105
+            </div>
106
+            <div class="row g-0 text-light py-5 py-lg-2" style="background-color: black;border: none;">
107
+                <div class="col-lg-3 text-center">
108
+                     <!-- blank -->
109
+                </div>
110
+                <div class="col-lg-3 px-5 px-lg-0">
111
+                    <p style="line-height: 30px; font-size: 1.25rem;font-weight: normal;">
112
+                        All Rights Reserved by thebola.club
113
+                    </p>
114
+                </div>
115
+                <div class="col-lg-4 row g-0  px-5 px-lg-0">
116
+                    <p style="line-height: 30px; font-size: 1.25rem;font-weight: normal;">
117
+                        <a class="text-light"  href="#" style="text-decoration: none;"> Terms of Use </a> |
118
+                        <a class="text-light"  href="#" style="text-decoration: none;"> Legal Disclaimer </a> |
119
+                        <a class="text-light"  href="#" style="text-decoration: none;"> Privacy Policy </a>
120
+                    </p>
121
+                </div>
122
+                <div class="col-lg-2 px-5 px-lg-0 text-lg-center my-5 my-lg-0">
123
+                    <a class="mx-1" href="#" style="text-decoration: none;">
124
+                        <i class="text-db fa-brands fa-lg fa-facebook-f"></i>
125
+                    </a>
126
+                    <a class="mx-1" href="#" style="text-decoration: none;">
127
+                        <i class="text-db fa-brands fa-lg fa-google"></i>
128
+                    </a>
129
+                    <a class="mx-1" href="#" style="text-decoration: none;">
130
+                        <i class="text-db fa-brands fa-lg fa-twitter"></i>
131
+                    </a>
132
+                    <a class="mx-1" href="#" style="text-decoration: none;">
133
+                        <i class="text-db fa-brands fa-lg fa-youtube"></i>
134
+                    </a>
135
+                    <a class="mx-1" href="#" style="text-decoration: none;">
136
+                        <i class="text-db fa-brands fa-lg fa-instagram"></i>
137
+                    </a>
138
+                </div>
139
+            </div>
140
+        </footer>
19 141
     </body>
20 142
 </html>

Loading…
Cancelar
Guardar