-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
1329 lines (1262 loc) · 113 KB
/
main.js
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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(window["webpackJsonp"] = window["webpackJsonp"] || []).push([["main"],{
/***/ 0:
/*!***************************!*\
!*** multi ./src/main.ts ***!
\***************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
module.exports = __webpack_require__(/*! C:\Users\91965\Project\src\main.ts */"zUnb");
/***/ }),
/***/ "AytR":
/*!*****************************************!*\
!*** ./src/environments/environment.ts ***!
\*****************************************/
/*! exports provided: environment */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "environment", function() { return environment; });
// This file can be replaced during build by using the `fileReplacements` array.
// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`.
// The list of file replacements can be found in `angular.json`.
const environment = {
production: false
};
/*
* For easier debugging in development mode, you can import the following file
* to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`.
*
* This import should be commented out in production mode because it will have a negative impact
* on performance if an error is thrown.
*/
// import 'zone.js/dist/zone-error'; // Included with Angular CLI.
/***/ }),
/***/ "IArL":
/*!*****************************************!*\
!*** ./src/app/main-service.service.ts ***!
\*****************************************/
/*! exports provided: MainServiceService */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "MainServiceService", function() { return MainServiceService; });
/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ "fXoL");
class MainServiceService {
constructor() {
// constructor() { }
this.URL = { 'Link': '', 'Info': '' };
}
}
MainServiceService.ɵfac = function MainServiceService_Factory(t) { return new (t || MainServiceService)(); };
MainServiceService.ɵprov = _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjectable"]({ token: MainServiceService, factory: MainServiceService.ɵfac, providedIn: 'root' });
/*@__PURE__*/ (function () { _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](MainServiceService, [{
type: _angular_core__WEBPACK_IMPORTED_MODULE_0__["Injectable"],
args: [{
providedIn: 'root'
}]
}], null, null); })();
/***/ }),
/***/ "Sy1n":
/*!**********************************!*\
!*** ./src/app/app.component.ts ***!
\**********************************/
/*! exports provided: AppComponent */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "AppComponent", function() { return AppComponent; });
/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ "fXoL");
/* harmony import */ var _angular_router__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/router */ "tyNb");
class AppComponent {
}
AppComponent.ɵfac = function AppComponent_Factory(t) { return new (t || AppComponent)(); };
AppComponent.ɵcmp = _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineComponent"]({ type: AppComponent, selectors: [["app-root"]], decls: 1, vars: 0, template: function AppComponent_Template(rf, ctx) { if (rf & 1) {
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](0, "router-outlet");
} }, directives: [_angular_router__WEBPACK_IMPORTED_MODULE_1__["RouterOutlet"]], styles: ["\n/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsImZpbGUiOiJzcmMvYXBwL2FwcC5jb21wb25lbnQuY3NzIn0= */"] });
/*@__PURE__*/ (function () { _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](AppComponent, [{
type: _angular_core__WEBPACK_IMPORTED_MODULE_0__["Component"],
args: [{
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
}]
}], null, null); })();
/***/ }),
/***/ "ZAI4":
/*!*******************************!*\
!*** ./src/app/app.module.ts ***!
\*******************************/
/*! exports provided: AppModule */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "AppModule", function() { return AppModule; });
/* harmony import */ var _angular_platform_browser__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/platform-browser */ "jhN1");
/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/core */ "fXoL");
/* harmony import */ var _angular_material_select__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/material/select */ "d3UM");
/* harmony import */ var _angular_platform_browser_animations__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @angular/platform-browser/animations */ "R1ws");
/* harmony import */ var _angular_material_button__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/material/button */ "bTqV");
/* harmony import */ var _app_component__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./app.component */ "Sy1n");
/* harmony import */ var _image_enlarger_image_enlarger_component__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./image-enlarger/image-enlarger.component */ "oaVv");
/* harmony import */ var _angular_router__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @angular/router */ "tyNb");
/* harmony import */ var _main_service_service__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./main-service.service */ "IArL");
/* harmony import */ var _landing_page_landing_page_component__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./landing-page/landing-page.component */ "mSt+");
const routes = [
{ path: '', redirectTo: 'LandingPage', pathMatch: 'full' },
{ path: 'LandingPage', component: _landing_page_landing_page_component__WEBPACK_IMPORTED_MODULE_9__["LandingPageComponent"] },
{ path: 'ImageViewer', component: _image_enlarger_image_enlarger_component__WEBPACK_IMPORTED_MODULE_6__["ImageEnlargerComponent"] },
];
class AppModule {
}
AppModule.ɵmod = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵdefineNgModule"]({ type: AppModule, bootstrap: [_app_component__WEBPACK_IMPORTED_MODULE_5__["AppComponent"]] });
AppModule.ɵinj = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵdefineInjector"]({ factory: function AppModule_Factory(t) { return new (t || AppModule)(); }, providers: [_main_service_service__WEBPACK_IMPORTED_MODULE_8__["MainServiceService"]], imports: [[
_angular_platform_browser__WEBPACK_IMPORTED_MODULE_0__["BrowserModule"],
_angular_material_select__WEBPACK_IMPORTED_MODULE_2__["MatSelectModule"],
_angular_material_button__WEBPACK_IMPORTED_MODULE_4__["MatButtonModule"],
_angular_platform_browser_animations__WEBPACK_IMPORTED_MODULE_3__["BrowserAnimationsModule"],
_angular_router__WEBPACK_IMPORTED_MODULE_7__["RouterModule"].forRoot(routes)
], _angular_router__WEBPACK_IMPORTED_MODULE_7__["RouterModule"]] });
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵsetNgModuleScope"](AppModule, { declarations: [_app_component__WEBPACK_IMPORTED_MODULE_5__["AppComponent"],
_image_enlarger_image_enlarger_component__WEBPACK_IMPORTED_MODULE_6__["ImageEnlargerComponent"],
_landing_page_landing_page_component__WEBPACK_IMPORTED_MODULE_9__["LandingPageComponent"]], imports: [_angular_platform_browser__WEBPACK_IMPORTED_MODULE_0__["BrowserModule"],
_angular_material_select__WEBPACK_IMPORTED_MODULE_2__["MatSelectModule"],
_angular_material_button__WEBPACK_IMPORTED_MODULE_4__["MatButtonModule"],
_angular_platform_browser_animations__WEBPACK_IMPORTED_MODULE_3__["BrowserAnimationsModule"], _angular_router__WEBPACK_IMPORTED_MODULE_7__["RouterModule"]], exports: [_angular_router__WEBPACK_IMPORTED_MODULE_7__["RouterModule"]] }); })();
/*@__PURE__*/ (function () { _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵsetClassMetadata"](AppModule, [{
type: _angular_core__WEBPACK_IMPORTED_MODULE_1__["NgModule"],
args: [{
declarations: [
_app_component__WEBPACK_IMPORTED_MODULE_5__["AppComponent"],
_image_enlarger_image_enlarger_component__WEBPACK_IMPORTED_MODULE_6__["ImageEnlargerComponent"],
_landing_page_landing_page_component__WEBPACK_IMPORTED_MODULE_9__["LandingPageComponent"]
],
imports: [
_angular_platform_browser__WEBPACK_IMPORTED_MODULE_0__["BrowserModule"],
_angular_material_select__WEBPACK_IMPORTED_MODULE_2__["MatSelectModule"],
_angular_material_button__WEBPACK_IMPORTED_MODULE_4__["MatButtonModule"],
_angular_platform_browser_animations__WEBPACK_IMPORTED_MODULE_3__["BrowserAnimationsModule"],
_angular_router__WEBPACK_IMPORTED_MODULE_7__["RouterModule"].forRoot(routes)
],
exports: [_angular_router__WEBPACK_IMPORTED_MODULE_7__["RouterModule"]],
providers: [_main_service_service__WEBPACK_IMPORTED_MODULE_8__["MainServiceService"]],
bootstrap: [_app_component__WEBPACK_IMPORTED_MODULE_5__["AppComponent"]]
}]
}], null, null); })();
/***/ }),
/***/ "mSt+":
/*!********************************************************!*\
!*** ./src/app/landing-page/landing-page.component.ts ***!
\********************************************************/
/*! exports provided: LandingPageComponent */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "LandingPageComponent", function() { return LandingPageComponent; });
/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ "fXoL");
/* harmony import */ var _angular_router__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/router */ "tyNb");
/* harmony import */ var _main_service_service__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../main-service.service */ "IArL");
/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @angular/common */ "ofXK");
/* harmony import */ var _angular_material_button__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/material/button */ "bTqV");
function LandingPageComponent_div_12_Template(rf, ctx) { if (rf & 1) {
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](0, "div", 100);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](1, "br");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](2, "p", 101);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](3, "Mattresses");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](4, "br");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](5, "p", 101);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](6, "Pillows");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](7, "br");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](8, "p", 101);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](9, "Bed Sheets");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](10, "br");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
} }
function LandingPageComponent_div_136_Template(rf, ctx) { if (rf & 1) {
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵnamespaceSVG"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵnamespaceHTML"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](0, "div", 102);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](1, "figure");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](2, "img", 103);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](3, "figcaption", 104);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](4, "strong");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](5);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](6, "figcaption", 104);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](7, "span", 105);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](8, "span", 105);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](9, "span", 105);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](10, "span", 106);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](11, "span", 107);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](12, "\u00A0(37) Reviews");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](13, "figcaption", 104);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](14, "span");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](15, "strong");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](16, "Rs. 66,00");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](17, "figcaption", 108);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](18, "span");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](19, "+Wishlist");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](20, "span");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](21, "Add");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
} if (rf & 2) {
const image_r5 = ctx.$implicit;
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵadvance"](2);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵpropertyInterpolate"]("src", image_r5.img, _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵsanitizeUrl"]);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵadvance"](3);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtextInterpolate"](image_r5.line1);
} }
function LandingPageComponent_div_179_Template(rf, ctx) { if (rf & 1) {
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵnamespaceSVG"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵnamespaceHTML"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](0, "div", 102);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](1, "figure");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](2, "img", 103);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](3, "figcaption", 104);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](4, "span", 105);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](5, "span", 105);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](6, "span", 105);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](7, "span", 105);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](8, "span", 107);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](9, "\u00A029th Jan, 2020");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](10, "figcaption", 104);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](11, "strong", 109);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](12);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](13, "figcaption", 108);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](14, "span");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](15);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
} if (rf & 2) {
const image_r6 = ctx.$implicit;
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵadvance"](2);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵpropertyInterpolate"]("src", image_r6.img, _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵsanitizeUrl"]);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵadvance"](10);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtextInterpolate"](image_r6.line1);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵadvance"](3);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtextInterpolate1"]("-", image_r6.Cust, "");
} }
function LandingPageComponent_div_189_Template(rf, ctx) { if (rf & 1) {
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](0, "div", 102);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](1, "figure");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](2, "img", 103);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](3, "figcaption", 104);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](4, "span", 107);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](5, "\u00A029th Jan, 2020");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](6, "figcaption", 104);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](7, "strong");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](8, "Keep your back in shape.. ");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](9, "figcaption", 108);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](10, "span");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](11, "(37) Comments");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
} if (rf & 2) {
const image_r7 = ctx.$implicit;
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵadvance"](2);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵpropertyInterpolate"]("src", image_r7.img, _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵsanitizeUrl"]);
} }
function LandingPageComponent_div_192_Template(rf, ctx) { if (rf & 1) {
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](0, "div", 102);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](1, "figure");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](2, "img", 103);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](3, "figcaption", 104);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](4, "span", 107);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](5, "\u00A029th Jan, 2020");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](6, "figcaption", 104);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](7, "strong");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](8, "Keep your back in shape.. ");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](9, "figcaption", 108);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](10, "span");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](11, "(37) Comments");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
} if (rf & 2) {
const image_r8 = ctx.$implicit;
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵadvance"](2);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵpropertyInterpolate"]("src", image_r8.img, _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵsanitizeUrl"]);
} }
class LandingPageComponent {
constructor(Router, Service) {
this.Router = Router;
this.Service = Service;
this.dropDown = false;
this.title = 'Project';
this.BasicCarousel = [
{
'img': 'https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcSKOnJhfcmz9sE9psaG6FJ3uR4OpZ-6ROQq7MnOs9RA_A&usqp=CAU&ec=45695923',
'line1': 'Fluid Magic Mattress',
},
{
'img': 'https://images-na.ssl-images-amazon.com/images/I/71YhWiPOa1L._AC_SL1500_.jpg',
'line1': 'Fluid Magic Mattress II',
},
{
'img': 'https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcQA5puKqytVrr1KwVbfsEn91zxQoSjcy3WjBQ&usqp=CAU',
'line1': 'Dura Mattress',
},
{
'img': 'https://cdn.shopify.com/s/files/1/0017/7078/2797/products/hydMattress1.jpg?v=1581419431',
'line1': 'Durfi hybrid Mattress',
},
{
'img': 'https://beds.co.uk/wp-content/uploads/2015/12/3pko2spring10_resized-600x600.jpg',
'line1': 'Quilted Memory Foam Mattress',
}
];
this.Testimonials = [
{
'img': 'https://images-na.ssl-images-amazon.com/images/I/71YhWiPOa1L._AC_SL1500_.jpg',
'line1': '"Fine product, as described! Loved it."',
'Cust': 'Jane'
},
{
'img': 'https://beds.co.uk/wp-content/uploads/2015/12/3pko2spring10_resized-600x600.jpg',
'line1': '"Fully satisfied with the product"',
'Cust': 'Jogn'
},
{
'img': 'https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcSKOnJhfcmz9sE9psaG6FJ3uR4OpZ-6ROQq7MnOs9RA_A&usqp=CAU&ec=45695923',
'line1': '"Best in comfort! Would recommend it always!"',
'Cust': 'Joseph'
},
{
'img': 'https://cdn.shopify.com/s/files/1/0017/7078/2797/products/hydMattress1.jpg?v=1581419431',
'line1': '"Exceptional! I sleep very well these days."',
'Cust': 'Bellatrix'
},
{
'img': 'https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcQA5puKqytVrr1KwVbfsEn91zxQoSjcy3WjBQ&usqp=CAU',
'line1': '"Amazing one, Durfi hybrid! Simply wow."',
'Cust': 'Jakob'
}
];
this.banners = [
{
'ID': '1',
'img': 'assets/1.jpg',
'checked': 'true',
},
{
'ID': '2',
'img': 'assets/2.jpg',
'checked': 'false',
},
{
'ID': '3',
'img': 'assets/3.jpg',
'checked': 'false',
},
{
'ID': '4',
'img': 'assets/4.jpg',
'checked': 'false',
},
{
'ID': '5',
'img': 'assets/5.jpg',
'checked': 'false',
},
{
'ID': '6',
'img': 'assets/6.jpg',
'checked': 'false',
},
];
this.Blogs = [{ 'img': 'https://cdn.shopify.com/s/files/1/0017/7078/2797/products/hydMattress1.jpg?v=1581419431' },
{ 'img': 'https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcSKOnJhfcmz9sE9psaG6FJ3uR4OpZ-6ROQq7MnOs9RA_A&usqp=CAU&ec=45695923' },
{ 'img': 'https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcRpGf1vKlk46GH1EariRt9WzW-ZdQ0ZUJY-y3ZuLJJGPz5x9k_XyN1OA2KKc9doP58a2Wf8nPDrv0o&usqp=CAc' },
{ 'img': 'https://www.dormio.in/wp-content/uploads/2017/08/latex-mattress-features.jpg' },
{ 'img': 'https://beds.co.uk/wp-content/uploads/2015/12/3pko2spring10_resized-600x600.jpg' },
{ 'img': 'https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcQA5puKqytVrr1KwVbfsEn91zxQoSjcy3WjBQ&usqp=CAU' }
];
this.foods = [
{ value: 'steak-0', viewValue: 'Steak' },
{ value: 'pizza-1', viewValue: 'Pizza' },
{ value: 'tacos-2', viewValue: 'Tacos' }
];
}
ngOnInit() {
this.selectedBanner = 'assets/2.jpg';
this.lowValue = 0;
this.highValue = 3;
this.low = 0;
this.high = 3;
}
basicCarouselSwitch(val) {
if (val == 0 && this.lowValue != 0) {
this.lowValue--;
this.highValue--;
}
else if (val == 1 && this.highValue != 5) {
this.lowValue++;
this.highValue++;
}
}
testimonialsSwitch(val) {
if (val == 0 && this.low != 0) {
this.low--;
this.high--;
}
else if (val == 1 && this.high != 5) {
this.low++;
this.high++;
}
}
enlargeImage(Link, Info) {
// window.location.href=val;
this.Service.URL.Link = Link;
this.Service.URL.Info = Info;
this.Router.navigate(['/ImageViewer']);
}
switchBanner(val) {
console.log(val);
for (let temp of this.banners) {
if (temp.ID == val) {
this.selectedBanner = temp.img;
this.filledDot = temp.ID;
}
}
}
}
LandingPageComponent.ɵfac = function LandingPageComponent_Factory(t) { return new (t || LandingPageComponent)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_router__WEBPACK_IMPORTED_MODULE_1__["Router"]), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_main_service_service__WEBPACK_IMPORTED_MODULE_2__["MainServiceService"])); };
LandingPageComponent.ɵcmp = _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineComponent"]({ type: LandingPageComponent, selectors: [["app-landing-page"]], decls: 305, vars: 28, consts: [[1, "header"], [1, "OfferText"], [1, "spacer"], ["role", "main", 1, "content"], [1, "toolBar"], ["id", "firstBlock", 1, "toolBar-Blocks"], ["width", "1em", "height", "1em", "viewBox", "0 0 16 16", "fill", "currentColor", "xmlns", "http://www.w3.org/2000/svg", 1, "bi", "bi-list-nested", 3, "click"], ["fill-rule", "evenodd", "d", "M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z"], ["class", "dropdown-content", 4, "ngIf"], ["id", "secondBlock", 1, "toolBar-Blocks"], ["width", "1em", "height", "1em", "viewBox", "0 0 16 16", "fill", "currentColor", "xmlns", "http://www.w3.org/2000/svg", 1, "bi", "bi-search"], ["fill-rule", "evenodd", "d", "M10.442 10.442a1 1 0 0 1 1.415 0l3.85 3.85a1 1 0 0 1-1.414 1.415l-3.85-3.85a1 1 0 0 1 0-1.415z"], ["fill-rule", "evenodd", "d", "M6.5 12a5.5 5.5 0 1 0 0-11 5.5 5.5 0 0 0 0 11zM13 6.5a6.5 6.5 0 1 1-13 0 6.5 6.5 0 0 1 13 0z"], ["id", "search", "matInput", "", "placeholder", "Looking for something?"], ["id", "thirdBlock", 1, "toolBar-Blocks"], [2, "font-weight", "500", "width", "100%"], ["width", "1em", "height", "1em", "viewBox", "0 0 16 16", "fill", "currentColor", "xmlns", "http://www.w3.org/2000/svg", 1, "bi", "bi-caret-down"], ["fill-rule", "evenodd", "d", "M3.204 5L8 10.481 12.796 5H3.204zm-.753.659l4.796 5.48a1 1 0 0 0 1.506 0l4.796-5.48c.566-.647.106-1.659-.753-1.659H3.204a1 1 0 0 0-.753 1.659z"], ["id", "fourthBlock", 1, "toolBar-Blocks"], ["width", "1em", "height", "1em", "viewBox", "0 0 16 16", "fill", "currentColor", "xmlns", "http://www.w3.org/2000/svg", 1, "bi", "bi-telephone"], ["fill-rule", "evenodd", "d", "M3.654 1.328a.678.678 0 0 0-1.015-.063L1.605 2.3c-.483.484-.661 1.169-.45 1.77a17.568 17.568 0 0 0 4.168 6.608 17.569 17.569 0 0 0 6.608 4.168c.601.211 1.286.033 1.77-.45l1.034-1.034a.678.678 0 0 0-.063-1.015l-2.307-1.794a.678.678 0 0 0-.58-.122l-2.19.547a1.745 1.745 0 0 1-1.657-.459L5.482 8.062a1.745 1.745 0 0 1-.46-1.657l.548-2.19a.678.678 0 0 0-.122-.58L3.654 1.328zM1.884.511a1.745 1.745 0 0 1 2.612.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.678.678 0 0 0 .178.643l2.457 2.457a.678.678 0 0 0 .644.178l2.189-.547a1.745 1.745 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.634 18.634 0 0 1-7.01-4.42 18.634 18.634 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877L1.885.511z"], ["width", "1em", "height", "1em", "viewBox", "0 0 16 16", "fill", "currentColor", "xmlns", "http://www.w3.org/2000/svg", 1, "bi", "bi-heart"], ["fill-rule", "evenodd", "d", "M8 2.748l-.717-.737C5.6.281 2.514.878 1.4 3.053c-.523 1.023-.641 2.5.314 4.385.92 1.815 2.834 3.989 6.286 6.357 3.452-2.368 5.365-4.542 6.286-6.357.955-1.886.838-3.362.314-4.385C13.486.878 10.4.28 8.717 2.01L8 2.748zM8 15C-7.333 4.868 3.279-3.04 7.824 1.143c.06.055.119.112.176.171a3.12 3.12 0 0 1 .176-.17C12.72-3.042 23.333 4.867 8 15z"], ["width", "1em", "height", "1em", "viewBox", "0 0 16 16", "fill", "currentColor", "xmlns", "http://www.w3.org/2000/svg", 1, "bi", "bi-person"], ["fill-rule", "evenodd", "d", "M10 5a2 2 0 1 1-4 0 2 2 0 0 1 4 0zM8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm6 5c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10z"], ["width", "1em", "height", "1em", "viewBox", "0 0 16 16", "fill", "currentColor", "xmlns", "http://www.w3.org/2000/svg", 1, "bi", "bi-cart"], ["fill-rule", "evenodd", "d", "M0 1.5A.5.5 0 0 1 .5 1H2a.5.5 0 0 1 .485.379L2.89 3H14.5a.5.5 0 0 1 .491.592l-1.5 8A.5.5 0 0 1 13 12H4a.5.5 0 0 1-.491-.408L2.01 3.607 1.61 2H.5a.5.5 0 0 1-.5-.5zM3.102 4l1.313 7h8.17l1.313-7H3.102zM5 12a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm7 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm-7 1a1 1 0 1 0 0 2 1 1 0 0 0 0-2zm7 0a1 1 0 1 0 0 2 1 1 0 0 0 0-2z"], [1, "Banner"], ["width", "100%", "id", "Banner", "alt", "Banner", 3, "src"], [1, "banner-Text"], [2, "font-size", "medium"], ["mat-button", "", 1, "buyButton"], [1, "banner-Text-1"], [2, "font-size", "40px"], [1, "banner-switch"], ["width", "1em", "height", "1em", "viewBox", "0 0 16 16", "fill", "currentColor", "xmlns", "http://www.w3.org/2000/svg", 1, "bi", "bi-circle-fill", 3, "ngClass", "click"], ["cx", "8", "cy", "8", "r", "8"], [1, "header-2"], [2, "font-size", "larger"], ["width", "1em", "height", "1em", "viewBox", "0 0 16 16", "fill", "currentColor", "xmlns", "http://www.w3.org/2000/svg", 1, "bi", "bi-award"], ["fill-rule", "evenodd", "d", "M9.669.864L8 0 6.331.864l-1.858.282-.842 1.68-1.337 1.32L2.6 6l-.306 1.854 1.337 1.32.842 1.68 1.858.282L8 12l1.669-.864 1.858-.282.842-1.68 1.337-1.32L13.4 6l.306-1.854-1.337-1.32-.842-1.68L9.669.864zm1.196 1.193l-1.51-.229L8 1.126l-1.355.702-1.51.229-.684 1.365-1.086 1.072L3.614 6l-.25 1.506 1.087 1.072.684 1.365 1.51.229L8 10.874l1.356-.702 1.509-.229.684-1.365 1.086-1.072L12.387 6l.248-1.506-1.086-1.072-.684-1.365z"], ["d", "M4 11.794V16l4-1 4 1v-4.206l-2.018.306L8 13.126 6.018 12.1 4 11.794z"], ["width", "1em", "height", "1em", "viewBox", "0 0 16 16", "fill", "currentColor", "xmlns", "http://www.w3.org/2000/svg", 1, "bi", "bi-hand-thumbs-up"], ["fill-rule", "evenodd", "d", "M6.956 1.745C7.021.81 7.908.087 8.864.325l.261.066c.463.116.874.456 1.012.965.22.816.533 2.511.062 4.51a9.84 9.84 0 0 1 .443-.051c.713-.065 1.669-.072 2.516.21.518.173.994.681 1.2 1.273.184.532.16 1.162-.234 1.733.058.119.103.242.138.363.077.27.113.567.113.856 0 .289-.036.586-.113.856-.039.135-.09.273-.16.404.169.387.107.819-.003 1.148a3.163 3.163 0 0 1-.488.901c.054.152.076.312.076.465 0 .305-.089.625-.253.912C13.1 15.522 12.437 16 11.5 16v-1c.563 0 .901-.272 1.066-.56a.865.865 0 0 0 .121-.416c0-.12-.035-.165-.04-.17l-.354-.354.353-.354c.202-.201.407-.511.505-.804.104-.312.043-.441-.005-.488l-.353-.354.353-.354c.043-.042.105-.14.154-.315.048-.167.075-.37.075-.581 0-.211-.027-.414-.075-.581-.05-.174-.111-.273-.154-.315L12.793 9l.353-.354c.353-.352.373-.713.267-1.02-.122-.35-.396-.593-.571-.652-.653-.217-1.447-.224-2.11-.164a8.907 8.907 0 0 0-1.094.171l-.014.003-.003.001a.5.5 0 0 1-.595-.643 8.34 8.34 0 0 0 .145-4.726c-.03-.111-.128-.215-.288-.255l-.262-.065c-.306-.077-.642.156-.667.518-.075 1.082-.239 2.15-.482 2.85-.174.502-.603 1.268-1.238 1.977-.637.712-1.519 1.41-2.614 1.708-.394.108-.62.396-.62.65v4.002c0 .26.22.515.553.55 1.293.137 1.936.53 2.491.868l.04.025c.27.164.495.296.776.393.277.095.63.163 1.14.163h3.5v1H8c-.605 0-1.07-.081-1.466-.218a4.82 4.82 0 0 1-.97-.484l-.048-.03c-.504-.307-.999-.609-2.068-.722C2.682 14.464 2 13.846 2 13V9c0-.85.685-1.432 1.357-1.615.849-.232 1.574-.787 2.132-1.41.56-.627.914-1.28 1.039-1.639.199-.575.356-1.539.428-2.59z"], ["width", "1em", "height", "1em", "viewBox", "0 0 16 16", "fill", "currentColor", "xmlns", "http://www.w3.org/2000/svg", 1, "bi", "bi-trophy"], ["fill-rule", "evenodd", "d", "M2.5.5A.5.5 0 0 1 3 0h10a.5.5 0 0 1 .5.5c0 .538-.012 1.05-.034 1.536a3 3 0 1 1-1.133 5.89c-.79 1.865-1.878 2.777-2.833 3.011v2.173l1.425.356c.194.048.377.135.537.255L13.3 15.1a.5.5 0 0 1-.3.9H3a.5.5 0 0 1-.3-.9l1.838-1.379c.16-.12.343-.207.537-.255L6.5 13.11v-2.173c-.955-.234-2.043-1.146-2.833-3.012a3 3 0 1 1-1.132-5.89A33.076 33.076 0 0 1 2.5.5zm.099 2.54a2 2 0 0 0 .72 3.935c-.333-1.05-.588-2.346-.72-3.935zm10.083 3.935a2 2 0 0 0 .72-3.935c-.133 1.59-.388 2.885-.72 3.935zM3.504 1c.007.517.026 1.006.056 1.469.13 2.028.457 3.546.87 4.667C5.294 9.48 6.484 10 7 10a.5.5 0 0 1 .5.5v2.61a1 1 0 0 1-.757.97l-1.426.356a.5.5 0 0 0-.179.085L4.5 15h7l-.638-.479a.501.501 0 0 0-.18-.085l-1.425-.356a1 1 0 0 1-.757-.97V10.5A.5.5 0 0 1 9 10c.516 0 1.706-.52 2.57-2.864.413-1.12.74-2.64.87-4.667.03-.463.049-.952.056-1.469H3.504z"], [1, "L5Head", "Level-2"], [1, "Level-3", "grid-Container"], [1, "gallery"], [1, "gallery__item", "gallery__item--1"], ["src", "https://images-na.ssl-images-amazon.com/images/I/61RdmKcImlL._SL1304_.jpg", "alt", "Gallery image 1", 1, "gallery__img", 3, "click"], [1, "top-right-caption"], [1, "gallery__item", "gallery__item--2"], ["src", "https://f1af951e8abcbc4c70b9-9997fa854afcb64e87870c0f4e867f1d.lmsin.net/1000004199846-1000004199845_01-750-1.jpg", "alt", "Gallery image 2", 1, "gallery__img", 3, "click"], [1, "gallery__item", "gallery__item--3"], ["src", "https://wakefit-co.s3.ap-south-1.amazonaws.com/img/dual-comfort-mattress/dual-comfort-mattress-1.jpg", "alt", "Gallery image 3", 1, "gallery__img", 3, "click"], [1, "gallery__item", "gallery__item--4"], ["src", "https://i.insider.com/5eb99e8748d92c15f8484f94?width=1100&format=jpeg&auto=webp", "alt", "Gallery image 4", 1, "gallery__img", 3, "click"], [1, "gallery__item", "gallery__item--5"], ["src", "https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcS46PJ_D1lsN8sYygI9FhPyqVXuLOVZPpHeLg&usqp=CAU", "alt", "Gallery image 5", 1, "gallery__img", 3, "click"], [1, "Level-4"], [2, "float", "right", "font-size", "small", "margin-right", "5%"], [1, "Level-5"], [1, "L5Head"], ["disabled", "lowValue == 0", 1, "CarouselModify", 3, "click"], ["width", "1em", "height", "1em", "viewBox", "0 0 16 16", "fill", "currentColor", "xmlns", "http://www.w3.org/2000/svg", 1, "bi", "bi-arrow-left-circle"], ["fill-rule", "evenodd", "d", "M8 15A7 7 0 1 0 8 1a7 7 0 0 0 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z"], ["fill-rule", "evenodd", "d", "M12 8a.5.5 0 0 1-.5.5H5.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L5.707 7.5H11.5a.5.5 0 0 1 .5.5z"], ["class", "zeroMP photoFrame", 4, "ngFor", "ngForOf"], ["disabled", "highValue == 5", 1, "CarouselModify", 3, "click"], ["width", "1em", "height", "1em", "viewBox", "0 0 16 16", "fill", "currentColor", "xmlns", "http://www.w3.org/2000/svg", 1, "bi", "bi-arrow-right-circle"], ["fill-rule", "evenodd", "d", "M4 8a.5.5 0 0 0 .5.5h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5H4.5A.5.5 0 0 0 4 8z"], [1, "Level-6", "grid-Container"], [1, "gallery__item", "gallery__item--7"], ["src", "https://wakefit-co.s3.ap-south-1.amazonaws.com/img/dual-comfort-mattress/dual-comfort-mattress-1.jpg", "alt", "Gallery image 7", 1, "gallery__img", 3, "click"], [1, "gallery__item", "gallery__item--8"], ["src", "https://f1af951e8abcbc4c70b9-9997fa854afcb64e87870c0f4e867f1d.lmsin.net/1000004199846-1000004199845_01-750-1.jpg", "alt", "Gallery image 8", 1, "gallery__img", 3, "click"], [1, "gallery__item", "gallery__item--9"], ["src", "https://images-na.ssl-images-amazon.com/images/I/61RdmKcImlL._SL1304_.jpg", "alt", "Gallery image 9", 1, "gallery__img", 3, "click"], [1, "gallery__item", "gallery__item--10"], ["src", "https://i.insider.com/5eb99e8748d92c15f8484f94?width=1100&format=jpeg&auto=webp", "alt", "Gallery image 10", 1, "gallery__img", 3, "click"], ["disabled", "low == 0", 1, "CarouselModify", 3, "click"], ["disabled", "high == 5", 1, "CarouselModify", 3, "click"], [1, "Level-7"], [1, "Level-8"], [1, "GreenContainer"], ["width", "100%", "height", "80%", "src", "https://wallpapercave.com/wp/wp2060641.jpg", 2, "top", "0", "left", "0", "right", "0"], [1, "Text-Para"], [2, "font-size", "28px", "font-weight", "500"], [1, "adjacent-img"], ["src", "assets/BedOpaque.png"], [1, "footer-top"], [1, "lblPopSearch"], ["mat-button", "", 1, "btnPopSearch"], [1, "footer-bottom", "ptop30", "pbot30"], [2, "width", "50%", "text-align", "center", "float", "left", "background", "#4E6CB8"], [2, "margin-top", "0px"], ["matInput", "", "placeholder", "Email ID"], [2, "background", "yellow", "color", "black", "display", "inline-block", "margin-top", "5px"], [2, "width", "100%", "text-align", "center", "background", "#4E6CB8", "color", "#728DD3"], [1, "dropdown-content"], [1, "Pointer"], [1, "zeroMP", "photoFrame"], ["alt", "Trulli", 1, "photoGram", "roundedCornersTop", 2, "width", "100%", 3, "src"], [1, "caption", "zeroMP"], [1, "fa", "fa-star", "checked"], [1, "fa", "fa-star"], [2, "color", "gray"], [1, "caption", "zeroMP", "roundedCornersBottom"], [2, "font-style", "italic", "color", "grey", "font", "medium"]], template: function LandingPageComponent_Template(rf, ctx) { if (rf & 1) {
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](0, "div", 0);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](1, "span", 1);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](2, " Launch Offer : 30% OFF on LiveIn Mattress + Free Pillows ");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](3, "div", 2);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](4, "div", 3);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](5, "div", 4);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](6, "div", 5);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](7, "span");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵnamespaceSVG"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](8, "svg", 6);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵlistener"]("click", function LandingPageComponent_Template__svg_svg_click_8_listener() { return ctx.dropDown = !ctx.dropDown; });
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](9, "path", 7);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵnamespaceHTML"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](10, "strong");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](11, " LOGO");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtemplate"](12, LandingPageComponent_div_12_Template, 11, 0, "div", 8);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](13, "div", 9);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](14, "span");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵnamespaceSVG"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](15, "svg", 10);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](16, "path", 11);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](17, "path", 12);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](18, " \u00A0");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵnamespaceHTML"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](19, "input", 13);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](20, "div", 14);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](21, "span", 15);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵnamespaceSVG"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](22, "svg", 16);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](23, "path", 17);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](24, "\u00A0 All Categories");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵnamespaceHTML"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](25, "div", 18);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](26, "span");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵnamespaceSVG"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](27, "svg", 19);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](28, "path", 20);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](29, " Reach us: 1800-999-999 \u00A0 ");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](30, "svg", 21);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](31, "path", 22);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](32, " Favourite ");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](33, "svg", 23);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](34, "path", 24);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](35, " Account ");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](36, "svg", 25);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](37, "path", 26);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](38, " Cart \u00A0 ");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵnamespaceHTML"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](39, "div", 27);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](40, "img", 28);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](41, "div", 29);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](42, "p");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](43, "Branded Mattress");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](44, "p", 30);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](45, "DIY memory foam mattress to suit your needs.");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](46, "button", 31);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](47, "BUY NOW \u2192");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](48, "div", 32);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](49, "p");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](50, "use code");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](51, "p");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](52, "BLACKFRIDAY20");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](53, "p");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](54, "and get");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](55, "p", 33);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](56, "30% OFF");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](57, "div", 34);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵnamespaceSVG"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](58, "svg", 35);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵlistener"]("click", function LandingPageComponent_Template__svg_svg_click_58_listener() { return ctx.switchBanner(1); });
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](59, "circle", 36);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵnamespaceHTML"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](60, "br");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵnamespaceSVG"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](61, "svg", 35);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵlistener"]("click", function LandingPageComponent_Template__svg_svg_click_61_listener() { return ctx.switchBanner(2); });
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](62, "circle", 36);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵnamespaceHTML"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](63, "br");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵnamespaceSVG"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](64, "svg", 35);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵlistener"]("click", function LandingPageComponent_Template__svg_svg_click_64_listener() { return ctx.switchBanner(3); });
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](65, "circle", 36);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵnamespaceHTML"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](66, "br");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵnamespaceSVG"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](67, "svg", 35);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵlistener"]("click", function LandingPageComponent_Template__svg_svg_click_67_listener() { return ctx.switchBanner(4); });
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](68, "circle", 36);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵnamespaceHTML"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](69, "br");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵnamespaceSVG"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](70, "svg", 35);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵlistener"]("click", function LandingPageComponent_Template__svg_svg_click_70_listener() { return ctx.switchBanner(5); });
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](71, "circle", 36);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵnamespaceHTML"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](72, "br");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵnamespaceSVG"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](73, "svg", 35);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵlistener"]("click", function LandingPageComponent_Template__svg_svg_click_73_listener() { return ctx.switchBanner(6); });
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](74, "circle", 36);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵnamespaceHTML"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](75, "br");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](76, "div", 37);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](77, "br");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](78, "span", 1);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](79, "strong", 38);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵnamespaceSVG"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](80, "svg", 39);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](81, "path", 40);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](82, "path", 41);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](83, " Best Quality ");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](84, "\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0 ");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵnamespaceHTML"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](85, "span", 1);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](86, "strong", 38);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵnamespaceSVG"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](87, "svg", 42);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](88, "path", 43);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](89, " Most trusted ");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](90, "\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0 ");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵnamespaceHTML"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](91, "span", 1);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](92, "strong", 38);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵnamespaceSVG"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](93, "svg", 44);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](94, "path", 45);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](95, " 5 years of Excellence ");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵnamespaceHTML"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](96, "br");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](97, "br");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](98, "br");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](99, "div", 46);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](100, "Range of most comfortable products");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](101, "div", 47);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](102, "div", 48);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](103, "figure", 49);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](104, "img", 50);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵlistener"]("click", function LandingPageComponent_Template_img_click_104_listener() { return ctx.enlargeImage("https://images-na.ssl-images-amazon.com/images/I/61RdmKcImlL._SL1304_.jpg", "Dura Mattress"); });
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](105, "span", 51);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](106, "Dura Mattress");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](107, "figure", 52);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](108, "img", 53);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵlistener"]("click", function LandingPageComponent_Template_img_click_108_listener() { return ctx.enlargeImage("https://f1af951e8abcbc4c70b9-9997fa854afcb64e87870c0f4e867f1d.lmsin.net/1000004199846-1000004199845_01-750-1.jpg", "Flexi Mattress"); });
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](109, "span", 51);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](110, "Flexi Mattress");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](111, "figure", 54);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](112, "img", 55);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵlistener"]("click", function LandingPageComponent_Template_img_click_112_listener() { return ctx.enlargeImage("https://wakefit-co.s3.ap-south-1.amazonaws.com/img/dual-comfort-mattress/dual-comfort-mattress-1.jpg", "Comfy Mattress"); });
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](113, "span", 51);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](114, "Comfy Mattress");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](115, "figure", 56);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](116, "img", 57);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵlistener"]("click", function LandingPageComponent_Template_img_click_116_listener() { return ctx.enlargeImage("https://i.insider.com/5eb99e8748d92c15f8484f94?width=1100&format=jpeg&auto=webp", "Satin Mattress"); });
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](117, "span", 51);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](118, "Satin Mattress");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](119, "figure", 58);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](120, "img", 59);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵlistener"]("click", function LandingPageComponent_Template_img_click_120_listener() { return ctx.enlargeImage("https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcS46PJ_D1lsN8sYygI9FhPyqVXuLOVZPpHeLg&usqp=CAU", "Pillows"); });
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](121, "span", 51);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](122, "Pillows");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](123, "div", 60);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](124, "strong");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](125, "span", 61);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](126, "EXPLORE MORE \u2192 ");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](127, "\u00A0 ");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](128, "div", 62);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](129, "br");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](130, "h2", 63);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](131, "Best Selling Products");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](132, "div", 64);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵlistener"]("click", function LandingPageComponent_Template_div_click_132_listener() { return ctx.basicCarouselSwitch(0); });
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵnamespaceSVG"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](133, "svg", 65);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](134, "path", 66);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](135, "path", 67);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtemplate"](136, LandingPageComponent_div_136_Template, 22, 2, "div", 68);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵpipe"](137, "slice");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵnamespaceHTML"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](138, "div", 69);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵlistener"]("click", function LandingPageComponent_Template_div_click_138_listener() { return ctx.basicCarouselSwitch(1); });
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵnamespaceSVG"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](139, "svg", 70);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](140, "path", 66);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](141, "path", 71);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵnamespaceHTML"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](142, "br");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](143, "div", 72);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](144, "h2", 63);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](145, "Featured Ranges");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](146, "div", 48);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](147, "figure", 73);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](148, "img", 74);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵlistener"]("click", function LandingPageComponent_Template_img_click_148_listener() { return ctx.enlargeImage("https://wakefit-co.s3.ap-south-1.amazonaws.com/img/dual-comfort-mattress/dual-comfort-mattress-1.jpg", "Dura Mattress"); });
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](149, "span", 51);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](150, "Dura Mattress");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](151, "figure", 75);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](152, "img", 76);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵlistener"]("click", function LandingPageComponent_Template_img_click_152_listener() { return ctx.enlargeImage("https://f1af951e8abcbc4c70b9-9997fa854afcb64e87870c0f4e867f1d.lmsin.net/1000004199846-1000004199845_01-750-1.jpg", "Sofas"); });
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](153, "span", 51);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](154, "Sofas");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](155, "figure", 77);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](156, "img", 78);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵlistener"]("click", function LandingPageComponent_Template_img_click_156_listener() { return ctx.enlargeImage("https://images-na.ssl-images-amazon.com/images/I/61RdmKcImlL._SL1304_.jpg", "Bed Sheets"); });
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](157, "span", 51);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](158, "Bed Sheets");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](159, "figure", 79);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](160, "img", 80);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵlistener"]("click", function LandingPageComponent_Template_img_click_160_listener() { return ctx.enlargeImage("https://i.insider.com/5eb99e8748d92c15f8484f94?width=1100&format=jpeg&auto=webp", "Flexi Mattress"); });
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](161, "span", 51);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](162, "Flexi Mattress");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](163, "br");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](164, "br");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](165, "div", 60);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](166, "strong");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](167, "span", 61);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](168, "EXPLORE MORE \u2192 ");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](169, "\u00A0 ");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](170, "br");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](171, "div", 62);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](172, "br");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](173, "h2", 63);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](174, "Testimonials");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](175, "div", 81);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵlistener"]("click", function LandingPageComponent_Template_div_click_175_listener() { return ctx.testimonialsSwitch(0); });
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵnamespaceSVG"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](176, "svg", 65);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](177, "path", 66);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](178, "path", 67);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtemplate"](179, LandingPageComponent_div_179_Template, 16, 3, "div", 68);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵpipe"](180, "slice");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵnamespaceHTML"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](181, "div", 82);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵlistener"]("click", function LandingPageComponent_Template_div_click_181_listener() { return ctx.testimonialsSwitch(1); });
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵnamespaceSVG"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](182, "svg", 70);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](183, "path", 66);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](184, "path", 71);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵnamespaceHTML"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](185, "br");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](186, "div", 83);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](187, "h2", 63);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](188, "Blog Posts");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtemplate"](189, LandingPageComponent_div_189_Template, 12, 1, "div", 68);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵpipe"](190, "slice");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](191, "br");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtemplate"](192, LandingPageComponent_div_192_Template, 12, 1, "div", 68);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵpipe"](193, "slice");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](194, "div", 60);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](195, "br");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](196, "br");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](197, "strong");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](198, "span", 61);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](199, "SHOW ALL \u2192 ");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](200, "\u00A0 ");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](201, "br");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](202, "br");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](203, "div", 84);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](204, "div", 85);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](205, "img", 86);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](206, "span", 87);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](207, "p", 88);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](208, " Why Choose Us?");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](209, "br");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](210, "br");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](211, "p");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](212, "We are a sleep solutions company strengthened by our five decades of expertise and best-in-class innovation to offer you our iconic and research-backed mattresses and technology-led sleep accessories.");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](213, "br");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](214, "p");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](215, "From India's only certified orthopedic mattress range recommended and tested by National Health Academy to naturally cool and eco-friendly latex mattresses and 100% memory foam pillows to anti-microbial roll pack mattresses and mattress protectors, all our offerings are designed to provide a deep, healthy and enriching sleep.");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](216, "br");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](217, "p");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](218, "You can not only shop the Duroflex orthopedic mattress online here but find our foldable mattress also known as slim mattress, special pillow for neck pain and wide variety of best mattresses suitable for all kinds of sleepers. ");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](219, "br");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](220, "p");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](221, "Our bestselling ortho mattresses and memory foam mattresses are highly recommended for a healthy sleep that leads to posture alignment and wakes you up feeling refreshed. ");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](222, "br");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](223, "span", 89);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](224, "img", 90);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](225, "div", 91);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](226, "div", 92);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](227, "Popular Searches");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](228, "button", 93);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](229, "Flexible");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](230, "button", 93);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](231, "Mattress");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](232, "button", 93);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](233, "Pillows");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](234, "button", 93);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](235, "Bed Sheets");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](236, "br");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](237, "div", 94);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](238, "table", 95);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](239, "tr");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](240, "td");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](241, "strong");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](242, "Company");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](243, "td");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](244, "strong");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](245, "Products");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](246, "td");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](247, "strong");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](248, "Support");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](249, "tr");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](250, "td");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](251, "Home");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](252, "td");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](253, "Mattress");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](254, "td");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](255, "Privacy & Security");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](256, "tr");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](257, "td");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](258, "About US");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](259, "td");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](260, "Bed in a Box");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](261, "td");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](262, "Terms & Conditions");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](263, "tr");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](264, "td");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](265, "Blogs");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](266, "td");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](267, "Pillows");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](268, "td");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](269, "Warranty Policy");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](270, "tr");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](271, "td");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](272, "td");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](273, "Slim Mattress");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](274, "td");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](275, "Return Policy");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](276, "table", 95);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](277, "tr");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](278, "td");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](279, "strong");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](280, "Products From");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](281, "td");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](282, "strong");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](283, "Subscribe");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](284, "tr");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](285, "td");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](286, "ABC, x98, This street,");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](287, "br");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](288, " That Block, Near This Beach");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](289, "br");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](290, " NewYork");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](291, "br");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](292, " 110011 ");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](293, "td", 96);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](294, "input", 97);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](295, "button", 98);
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵtext"](296, "\u00A0\u2192");
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](297, "tr");