-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile.html
860 lines (779 loc) · 35.7 KB
/
profile.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport"
content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>Profile</title>
</script>
<link rel="icon" type="image/png" href="images/" sizes="32x32">
<!--Style-->
<link rel="stylesheet" href="css/reset.css" preload>
<link rel="stylesheet" href="css/milligram.css" preload>
<!--endbuild-->
<!--js-->
<script async type="text/javascript" src="js/app.js"></script>
<!--endbuild-->
<link rel="stylesheet" type="text/css" href="css/about.css" preload>
</head>
<body>
<header>
<div class="wrapper">
<nav>
<a href="index.html" class="logo"><img src="cfind/source/images/sunenergy_logo_homepage.png" alt=""></a>
<div class="right-header">
<div class="top">
<ul>
<li><a href="">Become SUN Partner</a></li>
<li class="login"><a href="">Login</a></li>
<li><a href="">Contact</a></li>
<li><a href="">Career</a></li>
</ul>
</div>
<ul class="menu">
<li class="have-child">
<a href="#">About Us</a>
<div class="child" style="">
<div class="title">
<h4>About Us</h4>
</div>
<div class="wrap-row">
<div class="col">
<ul>
<li class=""><a href="#">Profile</a></li>
<li class=""><a href="#">CEO Message</a></li>
<li class=""><a href="#">Why us</a></li>
<li class=""><a href="#">Our People</a></li>
<li class=""><a href="#">Milestones</a></li>
<li class=""><a href="#">Our Business Unit</a></li>
<li class=""><a href="#">Awards & Certification</a></li>
<li class=""><a href="#">Surya Nippon Nusantara</a></li>
</ul>
</div>
<div class="col">
<div class="block">
<h4>SUN Energy is the leading solar project developer in Indonesia</h4>
<p>Since 2016, SUN Energy has been involved in the development of over 280 MWp of solar projects
in the Asia-Pacific region, encompassing various aspects such as project siting, permitting,
financing, market development, and solar leasing.</p>
<a href="#" class="link__img">Read More <img src="#" alt=""></a>
</div>
</div>
<div class="col video-menu">
<figure>
<img src="images/cover_w252_h326_cover_w252_h326_thumbnail-video-about-us.png" alt="">
<span class="ico-play" data-iframe="DKWtBmkdZg8"> <img src="images/material/play-video.svg"
alt=""> Play Video</span>
</figure>
</div>
</div>
</div>
</li>
<li class="have-child">
<a href="#">Project</a>
<div class="child" style="">
<div class="title">
<h4>Project</h4>
</div>
<div class="wrap-row half">
<div class="col">
<ul>
<li class=" have-tab have-child">
<a href="#project-2">Commercial & Industrial</a>
<div class="child" style="">
<ul>
<li>
<a href="#">Mining</a>
</li>
<li>
<a href="#">Manufacturing</a>
</li>
<li>
<a href="#">Mall</a>
</li>
<li>
<a href="#">Commercial Building</a>
</li>
<li>
<a href="#">Financial Institution</a>
</li>
<li>
<a href="#">Hotel</a>
</li>
<li>
<a href="#">Automotive</a>
</li>
</ul>
</div>
</li>
<li class=" ">
<a href="#">Educational Institutions</a>
</li>
<li class=" ">
<a href="#">Business Solution</a>
</li>
<li class=" ">
<a href="#">Rural Electrification</a>
</li>
<li class=" ">
<a href="#">International Project</a>
</li>
<li class=""><a href="#">Nira</a></li>
</ul>
</div>
<div class="col">
<div class="listing" id="project-2" style="display:flex">
<a href="#">
<figure>
<img src="images/cover_w252_h326_cover_w252_h326_thumbnail-video-about-us.png" alt="">
<figcaption>
Mining
</figcaption>
</figure>
</a>
<a href="#">
<figure>
<img src="images/cover_w252_h326_cover_w252_h326_thumbnail-video-about-us.png" alt="">
<figcaption>
Manufacturing
</figcaption>
</figure>
</a>
<a href="#">
<figure>
<img src="images/cover_w252_h326_cover_w252_h326_thumbnail-video-about-us.png" alt="">
<figcaption>
Mall
</figcaption>
</figure>
</a>
<a href="#">
<figure>
<img src="images/cover_w252_h326_cover_w252_h326_thumbnail-video-about-us.png" alt="">
<figcaption>
Commercial Building
</figcaption>
</figure>
</a>
</div>
</div>
</div>
</div>
</li>
<li class="have-child">
<a href="#">Zero Investment</a>
<div class="child" style="">
<div class="title">
<h4>Zero Investment</h4>
</div>
<div class="wrap-row">
<div class="col">
<ul>
<li class=""><a href="#">Solar Journey</a></li>
<li class=""><a href="#">Calculator Simulation</a></li>
</ul>
</div>
<div class="col">
<div class="block">
<h4>Your Solar Energy System Voyage</h4>
<ol>
<li>Estimate your solar energy needs</li>
<li>Fill out the digital survey</li>
<li>Select your preferred payment methods</li>
<li>Install and start using your solar energy system<br> </li>
</ol>
</div>
</div>
<div class="col">
<figure class="text-abs">
<img src="images/cover_w252_h326_cover_w252_h326_thumbnail-video-about-us.png" alt="">
<figcaption>
<h5>Calculate your energy needs today</h5>
<a href="#" class="button">Calculate now </a>
</figcaption>
</figure>
</div>
</div>
</div>
</li>
<li class="have-child">
<a href="#">Technology & Innovation</a>
<div class="child" style="">
<div class="title">
<h4>Technology & Innovation</h4>
</div>
<div class="wrap-row">
<div class="col">
<ul>
<li class=""><a href="#">Technology</a></li>
<li class=""><a href="#">Tech Space</a></li>
<li class=""><a href="#">HSE & Maintenance</a></li>
</ul>
</div>
<div class="col">
<div class="block">
<h4>SUN Energy provides sustainable solutions for you.</h4>
<p><span style="background-color:rgb(255,255,255);color:rgb(68,71,70);">Our systems prioritize
power savings and energy efficiency, and you can remotely monitor your solar system with our
IoT-based solar monitoring tools.</span></p>
</p>
<a href="#" class="link__img">View More <img src="images/material/icon-angle-right-green.svg"
alt=""></a>
</div>
</div>
<div class="col img-text-bot">
<figure>
<img src="images/cover_w252_h326_cover_w252_h326_thumbnail-video-about-us.png" alt="">
</figure>
<h5>Solar technology tailor-made for you</h5>
<a href="#" class="link__img">See More <img src="images/material/icon-angle-right-green.svg"
alt=""></a>
</div>
</div>
</div>
</li>
<li class="have-child">
<a href="#">Media</a>
<div class="child" style="">
<div class="title">
<h4>Media</h4>
</div>
<div class="wrap-row half">
<div class="col">
<ul>
<li class=""><a href="#">News</a></li>
<li class=""><a href="#">Event</a></li>
<li class=""><a href="#">Blog</a></li>
<li class=""><a href="#">Library</a></li>
</ul>
</div>
<div class="col">
<div class="block">
<h4>Latest Update</h4>
<div class="row listing-media">
<div class="column column-33">
<figure>
<img src="images/cover_w252_h326_cover_w252_h326_thumbnail-video-about-us.png" alt="">
<figcaption>
<small>News</small>
<div class="text">
<span class="date">11 July 2024</span>
<h6>SUN Energy Operasikan PLTS Atap Sektor Industri Pertama di Kalimantan Utara</h6>
<div class="overflow">
<p>SUN Energy Operasikan PLTS Atap Sektor Industri Pertama di Kalimantan Utara</p>
<a href="#" class="link__img">View More <img
src="images/material/icon-angle-right-green.svg" alt=""></a>
</div>
</div>
</figcaption>
</figure>
</div>
<div class="column column-33">
<figure>
<img src="images/cover_w252_h326_cover_w252_h326_thumbnail-video-about-us.png" alt="">
<figcaption>
<small>Blog</small>
<div class="text">
<span class="date">29 June 2024</span>
<h6>Bagaimana PLTS Membuat Bisnis Anda Menghemat Biaya Listrik</h6>
<div class="overflow">
<p>Bagaimana PLTS Membuat Bisnis Anda Menghemat Biaya Listrik</p>
<a href="#" class="link__img">View More <img
src="images/material/icon-angle-right-green.svg" alt=""></a>
</div>
</div>
</figcaption>
</figure>
</div>
<div class="column column-33">
<figure>
<img src="images/cover_w252_h326_cover_w252_h326_thumbnail-video-about-us.png" alt="">
<figcaption>
<small>Event</small>
<div class="text">
<span class="date">06 March 2024</span>
<h6>Solartech Expo 2024</h6>
<div class="overflow">
<p>Sistem panel surya - Panel surya dapat menjadi pembangkit listrik mandiri yang
lebih hemat dan juga menjanjikan untuk jangka panjang.</p>
<a href="#" class="link__img">View More <img
src="images/material/icon-angle-right-green.svg" alt=""></a>
</div>
</div>
</figcaption>
</figure>
</div>
</div>
</div>
</div>
</div>
</div>
</li>
<li class="have-child">
<a href="#">ESG</a>
<div class="child" style="">
<div class="title">
<h4>ESG</h4>
</div>
<div class="wrap-row half">
<div class="col">
<ul>
<li class=" ">
<a href="#">Environment</a>
</li>
<li class=" ">
<a href="#">Social</a>
</li>
<li class="have-tab have-child ">
<a href="#esg-2">Governance</a>
<div class="child" style="">
<ul>
<li>
<a href="#">Whistle Blowing System</a>
</li>
<li>
<a href="#">Annual Report</a>
</li>
<li>
<a href="#">HSE</a>
</li>
</ul>
</div>
</li>
</ul>
</div>
<div class="col costum">
<div class="listing" id="esg-1" style="display:block">
<div class="row">
<div class="column column-53 border">
<div class="wrap-part">
<div class="part">
<h4>Making a difference to have a sustainable future</h4>
To reduce negative impacts on the environment, corporates, investors and customers are
increasingly looking for ESG solutions
<a target="_blank" href="#" class="link__img">Read More <img src="#" alt=""></a>
</div>
<div class="part">
<figure><img src="images/cover_w252_h326_cover_w252_h326_thumbnail-video-about-us.png"
alt="image"></figure>
<a download href="#" class="link__img">Download <img
src="images/material/icon-download.svg" alt=""></a>
</div>
</div>
</div>
<div class="column column-47 listing-media full">
<figure>
<img src="images/cover_w252_h326_cover_w252_h326_thumbnail-video-about-us.png" alt="image">
<figcaption>
<small>CSR Activity</small>
<div class="text">
<span class="date">01 April 2023</span>
<h6>Jelajah Bike dan Yayasan SUN Memasang Panel Surya di Pulau Ndana, NTT</h6>
<p>Pulau Ndana, sebuah pulau terpencil yang berada di wilayah administratif Nusa
Tenggara Timur, kini telah terang benderang dengan adanya sistem panel surya yang
dipasang oleh Jelajah Bike dan Yayasan Sinar Utama Nusantara (YSUN).</p>
<a href="#" class="link__img">View More <img
src="images/material/icon-angle-right-green.svg" alt=""></a>
</div>
</figcaption>
</figure>
</div>
</div>
</div>
<div class="listing" id="esg-2">
<a href="#">
<figure>
<img src="images/cover_w252_h326_cover_w252_h326_thumbnail-video-about-us.png" alt="icon">
<figcaption>
Whistle Blowing System
</figcaption>
</figure>
</a>
<a href="#">
<figure>
<img src="images/cover_w252_h326_cover_w252_h326_thumbnail-video-about-us.png" alt="icon">
<figcaption>
Annual Report
</figcaption>
</figure>
</a>
<a href="hse.html">
<figure>
<img src="images/cover_w252_h326_cover_w252_h326_thumbnail-video-about-us.png" alt="icon">
<figcaption>
HSE
</figcaption>
</figure>
</a>
</div>
</div>
</div>
</div>
</li>
<li class="on-mobile"><a href="#">Become SUN Partner</a></li>
<li class="on-mobile"><a href="#">Contact</a></li>
<li class="on-mobile"><a href="#">Career</a></li>
<li class="button-qoute"><a href="#" class="button button-outline">Get a
Quote</a></li>
<li class="search">
<img src="images/material/icon-search.svg" alt="">
<div class="search__box">
<form>
<input class="input-focus" type="text" name="search" placeholder="Search here..">
<button><img src="images/material/icon-search.svg" alt=""></button>
</form>
</div>
</li>
</ul>
<div class="menu-bar">
<img src="images/material/icon-menu-bar.svg" alt="">
</div>
</div>
</div>
</nav>
</div>
</header>
<!-- end of header -->
<section class="middle">
<div class="banner-page withvideo">
<figure>
<img src="images/about/cover_w1440_h400_tw1366_th379_x10_y1270_headline-banner-about_1366x768px_.png" alt="">
</figure>
<div class="wrap-banner">
<div class="wrap-banner__left">
<h5>COMPANY AT GLANCE</h5>
<h2>SUN Energy is The Leading Solar Project Developer in Indonesia</h2>
<a href="#" class="button popup-video"
data-src="https://www.youtube.com/embed/fYyFtb7sZ7A?autoplay=1&rel=0">Company Profile</a>
</div>
</div>
</div>
<div class="inner-content">
<div class="bg-top"><img src="images/material/bg-top.svg"></div>
<div class="wrapper-small content-pages">
<figure class="img-middle"><img src="images/about/cover_w990_h480_tw1080_th523_x10_y118_di-1_.png" alt="">
</figure>
<p>PT Bhakti Terang Indonesia “BTI” adalah salah satu perusahaan nasional Indonesia yang berkomitmen dalam
menyediakan solusi energi khususnya pada sektor industri dan pengembangan Energi Baru Terbarukan (EBT) sesuai
dengan kebutuhan klien dan mitranya. BTI sendiri didirikan sejak tahun 2018.</p>
<p>BTI memiliki cita-cita memberikan manfaat dan dampak positif bagi keseimbangan alam untuk kehidupan
berkelanjutan di Indonesia dengan turut andil dalam mengakselerasi transisi ke sumber energi bersih dan ramah
lingkungan. Demi mewujudkan hal tersebut, BTI hadir dalam memberikan solusi pengembangan energi surya dan
penyedia bahan bakar biomassa.
</p>
<div class="wrap-visimisi">
<div class="wrap-visimisi__visi">
<div class="wrap-img">
<figure><img src="images/cover_w66_h66_icon-vision.png" alt=""></figure>
<h3>Visi</h3>
</div>
<span>Indonesia berdaya energi listrik.</span>
</div>
<div class="wrap-visimisi__misi">
<div class="wrap-img">
<figure><img src="images/cover_w66_h66_icon-mission.png" alt=""></figure>
<h3>Misi</h3>
</div>
<ol>
<li>Turut serta dalam pembangunan / konstruksi pembangkit listrik tenaga : Surya, Angin, Uap, Gas, dan Air
sebagai Bisnis utama perusahaan</li>
<li>Turut serta dalam pekerjaan yang berhubungan dengan transisi energi baru terbarukan (EBT)</li>
<li>Turut serta dalam pekerjaan yang berhubungan dengan transisi energi baru terbarukan (EBT)</li>
<li>Mengedepankan mutu dan komitmen dalam menjalankan bisnis perusahaan</li>
<li>Meningkatkan kemampuan ilmu dan skill SDM perusahaan dalam bidang ketenagalistrikan secara
berkesinambungan</li>
</ol>
</div>
</div>
</div>
<div class="business-model">
<figure class="bg"><img src="images/content/bg-businessmodel.jpg" alt=""></figure>
<div class="wrap-abs wrapper-small">
<div class=" text-center">
<h3>Our Competitive Advantages</h3>
</div>
<div class="row row-wrap listing-businessmodel">
<div class="column column-50">
<figure><img src="images/content/business-1.png" alt=""></figure>
<div class="text">
<h5>Innovative Financing</h5>
<p>SUN Energy provides flexible financing schemes to meet the demands of customers, including a
zero-investment scheme and attractive loan interest rates.</p>
</div>
</div>
<div class="column column-50">
<figure><img src="images/content/business-2.png" alt=""></figure>
<div class="text">
<h5>Trustworthy</h5>
<p>SUN Energy encourages customers to utilize renewable energy by providing a 25-year performance
warranty.</p>
</div>
</div>
<div class="column column-50">
<figure><img src="images/content/business-3.png" alt=""></figure>
<div class="text">
<h5>Capable & Reliable</h5>
<p>SUN Energy focuses to fulfill its clients' demands by providing high-quality technology as well
as experienced and certified technical professionals who can enhance the productivity of solar energy
systems at an affordable price.</p>
</div>
</div>
<div class="column column-50">
<figure><img src="images/content/business-4.png" alt=""></figure>
<div class="text">
<h5>Sustainable</h5>
<p>SUN Energy ensures that all marketed products are manufactured in a sustainable manner in order to
contribute to the environment.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wrap-map">
<div class="text-center">
<h3><b>Project Map</b></h3>
</div>
<div id="map_about"></div>
</div>
<div class="banner-bottom">
<div class="wrapper">
<figure>
<img src="images/content/banner-bottom-about.jpg" alt="img">
</figure>
<div class="row row-wrap">
<div class="column">
<h4>Company Profile</h4>
<p>Download our company profile to learn more about us, including our history, missions, values, and what
distinguishes us from the competitors.</p>
</div>
<div class="column">
<a class="button">Download</a>
</div>
</div>
</div>
</div>
</section>
<section class="popup center" id="video-banner">
<div class="inner-popup video-popup">
<div class="close-popup"></div>
<div class="content-popup">
<div class="video">
<iframe width="100%" src="#" title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
</div>
</div>
</div>
</section>
<!--Footer -->
<footer>
<div class="wrapper">
<div class="foot-top">
<div class="foot-top__box logo">
<a href="index.html" class="img-logo">
<img src="images/sunenergy_logo_homepage.png" alt="">
</a>
<div class="wrap-media">
<h5>Follow Us</h5>
<div class="media">
<a href="https://www.instagram.com/sunenergyid/" target="_blank"><img src="images/ic-ig-green.svg"
alt="icon"></a>
<a href="https://www.youtube.com/channel/UCjmMCTJNHMZjGXSkHbdSYgw" target="_blank"><img
src="images/ic-yt-green.svg" alt="icon"></a>
<a href="https://www.linkedin.com/company/sunenergyid/" target="_blank"><img src="images/ic-lnk-green.svg"
alt="icon"></a>
<a href="https://www.facebook.com/sunenergyid?_rdc=1&_rdr" target="_blank"><img
src="images/fb-lnk-green.png" alt="icon"></a>
</div>
</div>
</div>
<div class="foot-top__box">
<small>Indonesia Head Office</small>
<h5>Menara Tekno</h5>
<a href="#" class="icon">
<img src="images/material/ic-loc.svg" alt="">
Jl. H. Fachrudin No.19, RT.1/RW.7,
Kebon Sirih, Tanah Abang,
Central Jakarta, DKI Jakarta 10250,
Office Hours: Monday - Friday, 9:00AM - 5.00PM
</a>
<a href="mailto:[email protected]" class="icon">
<img src="images/material/ic-mail.svg" alt="">
</a>
<a href="tel:(+62) 811 8989 008" class="icon">
<img src="images/material/ic-phone.svg" alt="">
(+62) 811 8989 008
</a>
</div>
<div class="foot-top__box">
<small>Singapore Office</small>
<h5>PLUS</h5>
<a href="#" class="icon">
<img src="images/material/ic-loc.svg" alt="">
20 Cecil Street
#11-06 PLUS
Singapore 049705
</a>
<a href="mailto:[email protected]" class="icon">
<img src="images/material/ic-mail.svg" alt="">
</a>
<a href="tel:(+62) 815 1343 1168" class="icon">
<img src="images/material/ic-phone.svg" alt="">
(+62) 815 1343 1168
</a>
</div>
<div class="foot-top__box">
<small>Australia Office</small>
<h5>SUN Aus. Holdings Pty Ltd</h5>
<a href="#" class="icon">
<img src="images/material/ic-loc.svg" alt="">
c/- Cicero Group Pty Ltd,
Level 2, Suite 9,
330 Churchill Avenue,
Subiaco WA 6008
</a>
<a href="mailto:[email protected]" class="icon">
<img src="images/material/ic-mail.svg" alt="">
</a>
<a href="tel:(+61) 8 6489 1600" class="icon">
<img src="images/material/ic-phone.svg" alt="">
(+61) 8 6489 1600
</a>
</div>
</div>
<div class="row">
<div class="column column-60">
<div class="copyright">Copyright 2024 © SUN Energy. All Rights Reserved.</div>
</div>
<div class="column column-40">
<div class="foot-link">
<a href="terms-condition.html">Terms & Condition</a>
<a href="privacy-policy.html">Privacy Policy</a>
<a href="tentang-sun-energy.html">FAQ</a>
</div>
</div>
</div>
</div>
</footer>
<!-- End of Qontak Webchat Script -->
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBWXy_gmnthBYkO-UTkGOpr2W66OmD7M-I"></script>
<script async type="text/javascript">
window.addEventListener("load", (event) => {
function nl2br(str, is_xhtml) {
let breakTag = (is_xhtml || typeof is_xhtml === 'undefined') ? '<br />' : '<br>';
return (str + '').replace(/([^>\r\n]?)(\r\n|\n\r|\r|\n)/g, '$1' + breakTag + '$2');
}
let markers = new Array();
$(document).ready(function () {
let data = {
"0": {
tag: "On Grid System",
title: "CoHive Menara Tekno",
address: "Jl. H. Fachrudin No.19, RT.1/RW.7, Kebon Sirih, Tanah Abang, central Jakarta, DKI Jakarta 10250",
image: "images/img-popup-maps.jpg",
email: "",
phone: "",
url: "business-solution",
lat: "-6.200000",
lng: "106.816666"
},
};
let mapOptions = {
center: { lat: -3.0469665, lng: 120.1623948 },
// text-center: {lat: 0.0208075, lng: 115.3832862},
zoom: 5,
panControl: false,
zoomControl: true,
mapTypeControl: false,
scaleControl: true,
streetViewControl: false,
overviewMapControl: false,
scrollwheel: false,
styles: [{ featureType: "administrative", elementType: "labels.text.fill", stylers: [{ color: "#444444" }] }, { featureType: "administrative.province", elementType: "geometry.stroke", stylers: [{ weight: "2.26" }, { color: "#ffffff" }] }, { featureType: "landscape", elementType: "all", stylers: [{ color: "#c1e7c6" }] }, { featureType: "poi", elementType: "all", stylers: [{ visibility: "off" }] }, { featureType: "road", elementType: "all", stylers: [{ saturation: -100 }, { lightness: 45 }] }, { featureType: "road.highway", elementType: "all", stylers: [{ visibility: "simplified" }] }, { featureType: "road.arterial", elementType: "labels.icon", stylers: [{ visibility: "off" }] }, { featureType: "transit", elementType: "all", stylers: [{ visibility: "off" }] }, { featureType: "water", elementType: "all", stylers: [{ color: "#ffffff" }, { visibility: "on" }] }]
};
// Display a map on the page
map = new google.maps.Map(document.getElementById('map_about'), mapOptions);
let tooltip = new google.maps.InfoWindow();
let bounds = new google.maps.LatLngBounds();
map.getBoundsZoomLevel = function () {
mapDim = {
height: $('#map_about').height(),
width: $('#map_about').width()
};
let WORLD_DIM = { height: 256, width: 256 };
let ZOOM_MAX = 21;
function latRad(lat) {
let sin = Math.sin(lat * Math.PI / 180);
let radX2 = Math.log((1 + sin) / (1 - sin)) / 2;
return Math.max(Math.min(radX2, Math.PI), -Math.PI) / 2;
}
function zoom(mapPx, worldPx, fraction) {
return Math.floor(Math.log(mapPx / worldPx / fraction) / Math.LN2);
}
let ne = bounds.getNorthEast();
let sw = bounds.getSouthWest();
let latFraction = (latRad(ne.lat()) - latRad(sw.lat())) / Math.PI;
let lngDiff = ne.lng() - sw.lng();
let lngFraction = ((lngDiff < 0) ? (lngDiff + 360) : lngDiff) / 360;
let latZoom = zoom(mapDim.height, WORLD_DIM.height, latFraction);
let lngZoom = zoom(mapDim.width, WORLD_DIM.width, lngFraction);
let out = Math.min(latZoom, lngZoom, ZOOM_MAX);
if (out > 8) return 8;
return out;
}
// Fit the map to the bounds
// map.fitBounds(bounds);
$.each(data, function (k, v) {
let marker = new google.maps.Marker({
uniqid: k,
position: new google.maps.LatLng(v.lat, v.lng),
map: map,
icon: '/images/material/fb-lnk-green.png',
});
google.maps.event.addListener(marker, "click", (function (marker, infowindow) {
let obj = data[marker.uniqid];
if (!obj)
return;
obj.id = marker.uniqid;
return function () {
infowindow.setContent('<div class="map_content"><figure><img src="' + obj.image + '" ></figure><div class="text"><span class="tag">' + obj.tag + '</span> <h6>' + obj.title + '</h6> <p class="icon address">' + obj.address + '</p>' + (obj.email ? '<a href="" class="icon mail">' + obj.email + '</a>' : '') + (obj.phone ? '<a href="" class="icon phone">' + obj.phone + '</a>' : '') + ' <a href="' + obj.url + '" class="link__img">View Detail <img src="/images/material/icon-angle-right-green.svg" alt=""></a></div></div>');
infowindow.open(map, marker);
setTimeout(() => {
$('.map_content .detail').on('click', function (e) {
infowindow.close();
e.preventDefault();
if (location.pathname.replace(/^\//, '') === this.pathname.replace(/^\//, '')
|| location.hostname === this.hostname) {
let target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
if (target.length) {
$('html,body').animate({
scrollTop: target.offset().top - $('header').outerHeight() - 20
}, 900);
return false;
}
}
});
}, 200);
};
})(marker, tooltip));
markers[k] = marker;
bounds.extend(marker.getPosition());
});
});
function goMarker(id) {
let marker = markers[id];
if (!marker)
return;
google.maps.event.trigger(marker, "click");
return false;
}
})
</script>
</body>
</html>