-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1151 lines (888 loc) · 58.3 KB
/
index.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RC Plane</title>
<link rel="stylesheet" href="style.css">
</head>
<body class="bg-[#05062b]">
<!-- - - - - - - - - - - FOR MOBILE DEVICES - - - - - - - - - - - - - -->
<!-- - - - - - - - - - - FOR MOBILE DEVICES - - - - - - - - - - - - - -->
<!-- - - - - - - - - - - FOR MOBILE DEVICES - - - - - - - - - - - - - -->
<!-- - - - - - - - - - - FOR MOBILE DEVICES - - - - - - - - - - - - - -->
<div class="w-[100vw] h-auto flex justify-center font-poppins relative overflow-x-hidden sm:hidden">
<div class="h-[273px] w-[266px] rounded-[273px] flex-shrink-0 -z-10 bg-[#FB2576] blur-[105px] absolute top-28 -left-[80px]">
</div>
<div class="h-[273px] w-[266px] rounded-[273px] flex-shrink-0 -z-10 bg-[#8000FF] blur-[105px] absolute top-[300px] -right-[60px]">
</div>
<div class="w-4/5">
<!-- HEADER -->
<div class="text-white w-full">
<div>
<h1 class="text-3xl font-julius">
RC PALNE
</h1>
<h6>Projects</h6>
<hr class="border-1 w-[88%]">
</div>
</div>
<!-- COMPLETED PROJECTS -->
<div class="text-white">
<div class="flex justify-center">
<h1 class="text-lg p-1">Completed Projects</h1>
</div>
<div class="grid grid-cols-2 gap-8 mt-4">
<!-- COMPLETED PROJECTS BUTTON-1 -->
<button onclick="popups(`card-c-1`)" class="w-24 h-20 text-black mx-auto grid grid-rows-6 rounded-md overflow-hidden">
<div class="row-span-4">
<img src="https://raw.githubusercontent.com/sri766/udaan-website/main/images/plane-projects/nora.png" alt="" class="object-fill w-full">
</div>
<div class="row-span-2 bg-white">
<div class="w-full h-full grid grid-rows-2 gap-0">
<div class="row-span-1">
<h6 class="text-[10px] font-julius">Nora</h6>
</div>
<div class="row-span-1 text-[8px]">
<h6 class="float-right m-1 mt-0">read more</h6>
</div>
</div>
</div>
</button>
<!-- COMPLETED PROJECTS BUTTON-2 -->
<button onclick="popups(`card-c-2`)" class="w-24 h-20 text-black mx-auto grid grid-rows-6 rounded-md overflow-hidden">
<div class="row-span-4">
<img src="https://raw.githubusercontent.com/sri766/udaan-website/main/images/plane-projects/fatboy.png" alt="" class="object-fill w-full">
</div>
<div class="row-span-2 bg-white">
<div class="w-full h-full grid grid-rows-2 gap-0">
<div class="row-span-1">
<h6 class="text-[10px] font-julius">Fatboy</h6>
</div>
<div class="row-span-1 text-[8px]">
<h6 class="float-right m-1 mt-0">read more</h6>
</div>
</div>
</div>
</button>
<!-- COMPLETED PROJECTS BUTTON-3 -->
<button onclick="popups(`card-c-3`)" class="w-24 h-20 text-black mx-auto grid grid-rows-6 rounded-md overflow-hidden">
<div class="row-span-4">
<img src="https://raw.githubusercontent.com/sri766/udaan-website/main/images/plane-projects/whale.png" alt="" class="object-fill w-full">
</div>
<div class="row-span-2 bg-white">
<div class="w-full h-full grid grid-rows-2 gap-0">
<div class="row-span-1">
<h6 class="text-[10px] font-julius">Whale</h6>
</div>
<div class="row-span-1 text-[8px]">
<h6 class="float-right m-1 mt-0">read more</h6>
</div>
</div>
</div>
</button>
<!-- COMPLETED PROJECTS BUTTON-4 -->
<button onclick="popups(`card-c-4`)" class="w-24 h-20 text-black mx-auto grid grid-rows-6 rounded-md overflow-hidden">
<div class="row-span-4">
<img src="https://raw.githubusercontent.com/sri766/udaan-website/main/images/plane-projects/elephant.png" alt="" class="object-fill w-full">
</div>
<div class="row-span-2 bg-white">
<div class="w-full h-full grid grid-rows-2 gap-0">
<div class="row-span-1">
<h6 class="text-[10px] font-julius">Elephent</h6>
</div>
<div class="row-span-1 text-[8px]">
<h6 class="float-right m-1 mt-0">read more</h6>
</div>
</div>
</div>
</button>
<!-- COMPLETED PROJECTS BUTTON-5 -->
<button onclick="popups(`card-c-5`)" class="w-24 h-20 text-black mx-auto grid grid-rows-6 rounded-md overflow-hidden">
<div class="row-span-4">
<img src="https://raw.githubusercontent.com/sri766/udaan-website/main/images/plane-projects/surprise.png" alt="" class="object-fill w-full">
</div>
<div class="row-span-2 bg-white">
<div class="w-full h-full grid grid-rows-2 gap-0">
<div class="row-span-1">
<h6 class="text-[10px] font-julius">Surprise</h6>
</div>
<div class="row-span-1 text-[8px]">
<h6 class="float-right m-1 mt-0">read more</h6>
</div>
</div>
</div>
</button>
<!-- COMPLETED PROJECTS BUTTON-6 -->
<button onclick="popups(`card-c-6`)" class="w-24 h-20 text-black mx-auto grid grid-rows-6 rounded-md overflow-hidden">
<div class="row-span-4">
<img src="https://raw.githubusercontent.com/sri766/udaan-website/main/images/plane-projects/udn%20Glider.png" alt="" class="object-fill w-full">
</div>
<div class="row-span-2 bg-white">
<div class="w-full h-full grid grid-rows-2 gap-0">
<div class="row-span-1">
<h6 class="text-[10px] font-julius">UND Glider</h6>
</div>
<div class="row-span-1 text-[8px]">
<h6 class="float-right m-1 mt-0">read more</h6>
</div>
</div>
</div>
</button>
</div>
</div>
<!-- CARDS COMPLETED PROJECTS -->
<!-- CARDS COMPLETED PROJECTS -->
<!-- CARDS COMPLETED PROJECTS -->
<!-- CARDS COMPLETED PROJECTS -->
<div class="flex justify-center items-center">
<!-- COMPLETED CARD-1 -->
<div id="card-c-1" class=" w-[90%] backdrop-blur-3xl rounded-3xl text-white absolute hidden ">
<div class="flex justify-center m-6">
<img src="https://raw.githubusercontent.com/sri766/udaan-website/main/images/plane-projects/nora.png" alt="" class="w-[50%]">
</div>
<div class="w-[85%] ml-8">
<h1 class="text-2xl font-julius">Nora</h1>
<h2>About:</h2>
<p>Nora is a very slim aircraft that resembles a flying needle when in the skies. It is very simple to produce.
With a dihydral wing and a sturdy fuselage, the aircraft is incredibly stable and straightforward to pilot.
This is a great option for those who are new to model aviation
</p>
<ul class="mt-4">
<li>General specifications</li>
<li>length:</li>
<li>CG :</li>
<li>Wingspan:</li>
<li>Dry Weight:</li>
<li>Wing loading:</li>
</ul>
</div>
<div class="flex justify-center m-4">
<button onclick="close_popup(`card-c-1`)" class="btn bg-[#04aa6d] text-white my-2 mx-2 rounded-lg font-bold px-4 py-2"> Close </button>
</div>
</div>
<!-- COMPLETED CARD-2 -->
<div id="card-c-2" class=" w-[90%] backdrop-blur-3xl rounded-3xl text-white absolute hidden">
<div class="flex justify-center m-6">
<img src="https://raw.githubusercontent.com/sri766/udaan-website/main/images/plane-projects/fatboy.png" alt="" class="w-[50%]">
</div>
<div class="w-[85%] ml-8">
<h1 class="text-2xl font-julius">Fatboy</h1>
<h2>About:</h2>
<p>The fatboy is one of the most trusted cargo plane in our club. With a
large cargo carrying capacity and a dihedral wing, this aircraft is
very versatile, as it can transport cargo and also serves as a trainer
aircraft due to its stability and ease of operation.
</p>
<ul class="mt-4">
<li>General specifications</li>
<li>length:</li>
<li>CG :</li>
<li>Wingspan:</li>
<li>Dry Weight:</li>
<li>Wing loading:</li>
</ul>
</div>
<div class="flex justify-center m-4">
<button onclick="close_popup(`card-c-2`)" class="btn bg-[#04aa6d] text-white my-2 mx-2 rounded-lg font-bold px-4 py-2"> Close </button>
</div>
</div>
<!-- COMPLETED CARD-3 -->
<div id="card-c-3" class=" w-[90%] backdrop-blur-3xl rounded-3xl text-white absolute hidden">
<div class="flex justify-center m-6">
<img src="https://raw.githubusercontent.com/sri766/udaan-website/main/images/plane-projects/whale.png" alt="" class="w-[50%]">
</div>
<div class="w-[85%] ml-8">
<h1 class="text-2xl font-julius">Whale</h1>
<h2>About:</h2>
<p>About A huge plane that looks like a flying whole when it's in the air, it can carry
a lot of cargo and has a tapered trailing edge that gives it the aerodynamic benefits
of a longer wingspan without the extra weight and drog. The wing is set up like a parachute
so it can lift more.
</p>
<ul class="mt-4">
<li>General specifications</li>
<li>length:</li>
<li>CG :</li>
<li>Wingspan:</li>
<li>Dry Weight:</li>
<li>Wing loading:</li>
</ul>
</div>
<div class="flex justify-center m-4">
<button onclick="close_popup(`card-c-3`)" class="btn bg-[#04aa6d] text-white my-2 mx-2 rounded-lg font-bold px-4 py-2"> Close </button>
</div>
</div>
<!-- COMPLETED CARD-4 -->
<div id="card-c-4" class=" w-[90%] backdrop-blur-3xl rounded-3xl text-white absolute hidden">
<div class="flex justify-center m-6">
<img src="https://raw.githubusercontent.com/sri766/udaan-website/main/images/plane-projects/elephant.png" alt="" class="w-[50%]">
</div>
<div class="w-[85%] ml-8">
<h1 class="text-2xl font-julius">Elephent</h1>
<h2>About:</h2>
<p>About Inspired by Boeing C-17 Globemaster e elephant which indeed a cargo plane
gives a vibe of military air craft has an incredible cargo carrying capacity with
its light weight body it required very less thrust while flying without cargo because
of its high lift.
</p>
<ul class="mt-4">
<li>General specifications</li>
<li>length:</li>
<li>CG :</li>
<li>Wingspan:</li>
<li>Dry Weight:</li>
<li>Wing loading:</li>
</ul>
</div>
<div class="flex justify-center m-4">
<button onclick="close_popup(`card-c-4`)" class="btn bg-[#04aa6d] text-white my-2 mx-2 rounded-lg font-bold px-4 py-2"> Close </button>
</div>
</div>
<!-- COMPLETED CARD-5 -->
<div id="card-c-5" class=" w-[90%] backdrop-blur-3xl rounded-3xl text-white absolute hidden">
<div class="flex justify-center m-6">
<img src="https://raw.githubusercontent.com/sri766/udaan-website/main/images/plane-projects/surprise.png" alt="" class="w-[50%]">
</div>
<div class="w-[85%] ml-8">
<h1 class="text-2xl font-julius">Surprise</h1>
<h2>About:</h2>
<p>Surprise is the combination of slim and a cargo carrying capable plane which is
similar to its previous version NORA. This plane has a very redge fuselage made up
from composite of wood and corrugated plastic. It has a long cord length which helps
it to give more lift.
</p>
<ul class="mt-4">
<li>General specifications</li>
<li>length:</li>
<li>CG :</li>
<li>Wingspan:</li>
<li>Dry Weight:</li>
<li>Wing loading:</li>
</ul>
</div>
<div class="flex justify-center m-4">
<button onclick="close_popup(`card-c-5`)" class="btn bg-[#04aa6d] text-white my-2 mx-2 rounded-lg font-bold px-4 py-2"> Close </button>
</div>
</div>
<!-- COMPLETED CARD-6 -->
<div id="card-c-6" class=" w-[90%] backdrop-blur-3xl rounded-3xl text-white absolute hidden top-28">
<div class="flex justify-center m-6">
<img src="https://raw.githubusercontent.com/sri766/udaan-website/main/images/plane-projects/udn%20Glider.png" alt="" class="w-[50%]">
</div>
<div class="w-[85%] ml-8">
<h1 class="text-lg font-julius">UND Glider</h1>
<h2>About:</h2>
<p>RC Glider- A radio-controlled (RC) glider is a remote-controlled gecraft designed
to scor through the air using the power of wind and thermals. It is a sleek and
lightweight aircroft with an aerodynamic design, allowing it to achieve long flight
times and graceful gliding monoeuvres. RC gliders excel at scaring and riding thermals,
which are columns of rising warm air. We can skil-fully exploit these thanmals;
glider can achi long tight durations and cover considerable distances without the
need for an onboard power source.
</p>
<ul class="mt-4">
<li>General specifications</li>
<li>length:</li>
<li>CG :</li>
<li>Wingspan:</li>
<li>Dry Weight:</li>
<li>Wing loading:</li>
</ul>
<h1 class="text-2xl my-3">Uses of RC Glider-</h1>
<ol class="list-decimal">
<li>
<p>Recreation and Hobby: Many people enjoy flying RC gliders as a recreational activity and a hobby.
It offers an immersive and relaxing flying experiance. allowing individuals to spend time outdoors
while enjoying the thril of piloting on aircraft</p>
</li>
<li>
<p>
Aric Photography and Videography: RC glider can be equipped with cameras or FPV (First Person View)
systems to capture stunning perial photographs and videos, The quiet and stable flight characteristics
of gliders make them well-suited for capturing aerial footage in a smooth and cinematic manner.
</p>
</li>
<li>
<p>
Scientific Research: RC Gliders are used in scientific research for various
purposes. They can be employed to study atmospheric conditions. gather date on wind potterns,
or monitor wildlife and ecosystems from an aerial perspective.
</p>
</li>
<li>
<p>
Experimental Platforms: RC gliders provide a platform for experimentation and innovation
Hobbysts and researchers commodify and customize gidersto test new technologies,
corodynamic designs, or fight control systems.
</p>
</li>
</ol>
</div>
<div class="flex justify-center m-4">
<button onclick="close_popup(`card-c-6`)" class="btn bg-[#04aa6d] text-white my-2 mx-2 rounded-lg font-bold px-4 py-2"> Close </button>
</div>
</div>
</div>
<!-- UPCOMING PROJECTS -->
<!-- CARDS OF UPCOMING PROJECTS -->
<!-- CARDS OF UPCOMING PROJECTS -->
<!-- CARDS OF UPCOMING PROJECTS -->
<!-- CARDS OF UPCOMING PROJECTS -->
<div class="flex justify-center items-center">
<!-- UPCOMING CARD-1 -->
<div id="card-u-1" class=" w-[90%] backdrop-blur-3xl rounded-3xl text-white absolute hidden">
<div class="flex justify-center m-6">
<img src="https://raw.githubusercontent.com/sri766/udaan-website/main/images/plane-projects/ft%20edge%20540.png" alt="" class="w-[50%]">
</div>
<div class="w-[85%] ml-8">
<h1 class="text-2xl font-julius">FT Edge 540</h1>
<h2>About:</h2>
<p>FT.Edge 540 is a remote-controlled (RC) version of the full-scale Edge 540-designed by Rite Test. It retains its
aerodynamic design low-wing configuration, and symmetrical airfoil we are taking this plone to compete in the World
Robotics Competition Technosian 2023
</p>
<ul class="mt-4">
<li>General specifications</li>
<li>length:</li>
<li>CG :</li>
<li>Wingspan:</li>
<li>Dry Weight:</li>
<li>Wing loading:</li>
</ul>
</div>
<div class="flex justify-center m-4">
<button onclick="close_popup(`card-u-1`)" class="btn bg-[#04aa6d] text-white my-2 mx-2 rounded-lg font-bold px-4 py-2"> Close </button>
</div>
</div>
<!-- UPCOMING CARD-2 -->
<div id="card-u-2" class=" w-[90%] backdrop-blur-3xl rounded-3xl text-white absolute hidden">
<div class="flex justify-center m-6">
<img src="https://raw.githubusercontent.com/sri766/udaan-website/main/images/plane-projects/udn%20cargo%20commander-1.png" alt="" class="w-[50%]">
</div>
<div class="w-[85%] ml-8">
<h1 class="text-2xl font-julius">UDN Cargo Commander-1 (UDN CC-1)</h1>
<h2>About:</h2>
<p>
Cardo Commander is the combination of a single motor and under- camber wing design in this RC cargo plane enables
efficient cargo transportation, stable fight characteristics, and the ability to handle various payload sizes and weights.
</p>
<ul class="mt-4">
<li>General specifications</li>
<li>length:</li>
<li>CG :</li>
<li>Wingspan:</li>
<li>Dry Weight:</li>
<li>Wing loading:</li>
</ul>
</div>
<div class="flex justify-center m-4">
<button onclick="close_popup(`card-u-2`)" class="btn bg-[#04aa6d] text-white my-2 mx-2 rounded-lg font-bold px-4 py-2"> Close </button>
</div>
</div>
<!-- UPCOMING CARD-3 -->
<div id="card-u-3" class=" w-[90%] backdrop-blur-3xl rounded-3xl text-white absolute hidden">
<div class="flex justify-center m-6">
<img src="https://raw.githubusercontent.com/sri766/udaan-website/main/images/plane-projects/udn-vtol.png" alt="" class="w-[50%]">
</div>
<div class="w-[85%] ml-8">
<h1 class="text-2xl font-julius">UDN-VTOL</h1>
<h2>About:</h2>
<p>UDN-VTOL with outonomous flight capabilities combines the advantages of vertical takeoff and landing with the
efficiency of horizontal flight, its onboard sensors, flight controller, and advanced control systems allow for
autonomous operation, making it a powerful tool for various applications such as erial surveying mapping, cargo
delivery, and more.
</p>
<ul class="mt-4">
<li>General specifications</li>
<li>length:</li>
<li>CG :</li>
<li>Wingspan:</li>
<li>Dry Weight:</li>
<li>Wing loading:</li>
</ul>
</div>
<div class="flex justify-center m-4">
<button onclick="close_popup(`card-u-3`)" class="btn bg-[#04aa6d] text-white my-2 mx-2 rounded-lg font-bold px-4 py-2"> Close </button>
</div>
</div>
<!-- UPCOMING CARD-4 -->
<div id="card-u-4" class=" w-[90%] backdrop-blur-3xl rounded-3xl text-white absolute hidden">
<div class="flex justify-center m-6">
<img src="https://raw.githubusercontent.com/sri766/udaan-website/main/images/plane-projects/sukhoisu-30%20UDN.png" alt="" class="w-[50%]">
</div>
<div class="w-[85%] ml-8">
<h1 class="text-2xl font-julius">SukhoiSu-30 UDN</h1>
<h2>About:</h2>
<p>The Sukhoi Su-30 UDN coptures the iconic design and aggressive appearance of the full-scale Su-30 fighter jet,
features a sleek streamlined fuselage with swept-back wings and twin vertical stabilizers. The attention to detail
in the models construction and point scheme accurately replicates the distinctive look of the Su-30
</p>
<ul class="mt-4">
<li>General specifications</li>
<li>length:</li>
<li>CG :</li>
<li>Wingspan:</li>
<li>Dry Weight:</li>
<li>Wing loading:</li>
</ul>
</div>
<div class="flex justify-center m-4">
<button onclick="close_popup(`card-u-4`)" class="btn bg-[#04aa6d] text-white my-2 mx-2 rounded-lg font-bold px-4 py-2"> Close </button>
</div>
</div>
<!-- UPCOMING CARD-5 -->
<div id="card-u-5" class=" w-[90%] backdrop-blur-3xl rounded-3xl text-white absolute hidden">
<div class="flex justify-center m-6">
<img src="https://raw.githubusercontent.com/sri766/udaan-website/main/images/plane-projects/udn-Amphibian.png" alt="" class="w-[50%]">
</div>
<div class="w-[85%] ml-8">
<h1 class="text-2xl font-julius">UND-Amphibian</h1>
<h2>About:</h2>
<p>The RC Amphibian is specifically designed to offer the capability of taking off and landing on both solid ground and
water surfaces It features a combination of design elements and features that allow for smooth transitions between
land and water operations
</p>
<ul class="mt-4">
<li>General specifications</li>
<li>length:</li>
<li>CG :</li>
<li>Wingspan:</li>
<li>Dry Weight:</li>
<li>Wing loading:</li>
</ul>
</div>
<div class="flex justify-center m-4">
<button onclick="close_popup(`card-u-5`)" class="btn bg-[#04aa6d] text-white my-2 mx-2 rounded-lg font-bold px-4 py-2"> Close </button>
</div>
</div>
<!-- UPCOMING CARD-6 -->
<div id="card-u-6" class=" w-[90%] backdrop-blur-3xl rounded-3xl text-white absolute hidden">
<div class="flex justify-center m-6">
<img src="https://raw.githubusercontent.com/sri766/udaan-website/main/images/plane-projects/udn%20view.png" alt="" class="w-[50%]">
</div>
<div class="w-[85%] ml-8">
<h1 class="text-2xl font-julius">UND-View</h1>
<h2>About:</h2>
<p>LON-View is a air surveilance aircraft, the primary purpose of this aircraft is to gather visual or sensor based cota
from the air. It may be used for applications such as aerial photography, videography, mapping environmental
monitoring, or even security and law enforcement purposes
</p>
<ul class="mt-4">
<li>General specifications</li>
<li>length:</li>
<li>CG :</li>
<li>Wingspan:</li>
<li>Dry Weight:</li>
<li>Wing loading:</li>
</ul>
</div>
<div class="flex justify-center m-4">
<button onclick="close_popup(`card-u-6`)" class="btn bg-[#04aa6d] text-white my-2 mx-2 rounded-lg font-bold px-4 py-2"> Close </button>
</div>
</div>
</div>
<!-- UPCOMING BUTTONS -->
<div class="text-white my-8">
<div class="flex justify-center">
<h1 class="text-lg p-1">Upcoming Projects</h1>
</div>
<div class="grid grid-cols-2 gap-8 mt-4">
<!-- UPCOMING BUTTON-1 -->
<button onclick="popups(`card-u-1`)" class="w-24 h-20 text-black mx-auto grid grid-rows-6 rounded-md overflow-hidden">
<div class="row-span-4">
<img src="https://raw.githubusercontent.com/sri766/udaan-website/main/images/plane-projects/ft%20edge%20540.png" alt="" class="object w-full">
</div>
<div class="row-span-2 bg-white">
<div class="w-full h-full grid grid-rows-2 gap-0">
<div class="row-span-1">
<h6 class="text-[10px] font-julius">FT EDGE 540</h6>
</div>
<div class="row-span-1 text-[8px]">
<h6 class="float-right m-1 mt-0">read more</h6>
</div>
</div>
</div>
</button>
<!-- UPCOMING BUTTON-2 -->
<button onclick="popups(`card-u-2`)" class="w-24 h-20 text-black mx-auto grid grid-rows-6 rounded-md overflow-hidden">
<div class="row-span-4">
<img src="https://raw.githubusercontent.com/sri766/udaan-website/main/images/plane-projects/udn%20cargo%20commander-1.png" alt="" class="object-fill w-full">
</div>
<div class="row-span-2 bg-white">
<div class="w-full h-full grid grid-rows-2 gap-0">
<div class="row-span-1">
<h6 class="text-[10px] font-julius">UDN Cargo Commander-1 (UND CC-1)</h6>
</div>
<div class="row-span-1 text-[8px]">
<h6 class="float-right m-1 mt-0">read more</h6>
</div>
</div>
</div>
</button>
<!-- UPCOMING BUTTON-3 -->
<button onclick="popups(`card-u-3`)" class="w-24 h-20 text-black mx-auto grid grid-rows-6 rounded-md overflow-hidden">
<div class="row-span-4">
<img src="https://raw.githubusercontent.com/sri766/udaan-website/main/images/plane-projects/udn-vtol.png" alt="" class="object-fill w-full">
</div>
<div class="row-span-2 bg-white">
<div class="w-full h-full grid grid-rows-2 gap-0">
<div class="row-span-1">
<h6 class="text-[10px] font-julius">UDN-Volt</h6>
</div>
<div class="row-span-1 text-[8px]">
<h6 class="float-right m-1 mt-0">read more</h6>
</div>
</div>
</div>
</button>
<!-- UPCOMING BUTTON-4 -->
<button onclick="popups(`card-u-4`)" class="w-24 h-20 text-black mx-auto grid grid-rows-6 rounded-md overflow-hidden">
<div class="row-span-4">
<img src="https://raw.githubusercontent.com/sri766/udaan-website/main/images/plane-projects/sukhoisu-30%20UDN.png" alt="" class="object-fill w-full">
</div>
<div class="row-span-2 bg-white">
<div class="w-full h-full grid grid-rows-2 gap-0">
<div class="row-span-1">
<h6 class="text-[10px] font-julius">SukhoiSu-30 UDN</h6>
</div>
<div class="row-span-1 text-[8px]">
<h6 class="float-right m-1 mt-0">read more</h6>
</div>
</div>
</div>
</button>
<!-- UPCOMING BUTTON-5 -->
<button onclick="popups(`card-u-5`)" class="w-24 h-20 text-black mx-auto grid grid-rows-6 rounded-md overflow-hidden">
<div class="row-span-4">
<img src="https://raw.githubusercontent.com/sri766/udaan-website/main/images/plane-projects/udn-Amphibian.png" alt="" class="object-fill w-full">
</div>
<div class="row-span-2 bg-white">
<div class="w-full h-full grid grid-rows-2 gap-0">
<div class="row-span-1">
<h6 class="text-[10px] font-julius">UDN-Amphibian</h6>
</div>
<div class="row-span-1 text-[8px]">
<h6 class="float-right m-1 mt-0">read more</h6>
</div>
</div>
</div>
</button>
<!-- UPCOMING BUTTON-6 -->
<button onclick="popups(`card-u-6`)" onclick="popups(`card-u-6`)" class="w-24 h-20 text-black mx-auto grid grid-rows-6 rounded-md overflow-hidden">
<div class="row-span-4">
<img src="https://raw.githubusercontent.com/sri766/udaan-website/main/images/plane-projects/udn%20view.png" alt="" class="object-fill w-full">
</div>
<div class="row-span-2 bg-white">
<div class="w-full h-full grid grid-rows-2 gap-0">
<div class="row-span-1">
<h6 class="text-[10px] font-julius">UDN-View</h6>
</div>
<div class="row-span-1 text-[8px]">
<h6 class="float-right m-1 mt-0">read more</h6>
</div>
</div>
</div>
</button>
</div>
</div>
</div>
</div>
<!-- - - - - - - - - - - - - FOR PC - - - - - - - - - - - - - - -->
<!-- - - - - - - - - - - - - FOR PC - - - - - - - - - - - - - - -->
<!-- - - - - - - - - - - - - FOR PC - - - - - - - - - - - - - - -->
<!-- - - - - - - - - - - - - FOR PC - - - - - - - - - - - - - - -->
<div class="w-full bg-[rgb(5,6,43)] justify-center relative overflow-x-hidden hidden sm:flex">
<div class="h-[751px] w-[741px] bg-[#ff002f62] flex-shrink-0 rounded-[751px] blur-[225px] z-0 absolute right-[-320px]">
</div>
<div class="h-[582px] w-[571px] z-0 bg-[#8000ff38] flex-shrink-0 rounded-[582px] blur-[206.46499633789062px] absolute top-[350px] left-[130px]">
</div>
<div class="h-[396px] w-[407.647px] z-0 bg-[#fb257758] flex-shrink-0 rounded-[407.647px] blur-[76.46546936035156px] absolute top-[1850px] -left-[200px]">
</div>
<div class="h-[600px] w-[600px] z-0 bg-[#8000ff69] flex-shrink-0 rounded-[600px] blur-[150px] absolute top-[3000px] right-[-200px]">
</div>
<div class="w-[70%] flex z-10 text-xl font-poppins">
<div class="text-white">
<div>
<h1 class="text-5xl font-julius">
RC PALNE
</h1>
<h6>Projects</h6>
<hr class="border-2 w-1/2">
</div>
<div class="flex justify-center">
<h1 class="text-[45px] font-medium p-1 m-8">Completed Projects</h1>
</div>
<div>
<div class="flex w-full my-5">
<div class="w-[70%] mr-9">
<h1 class="text-[35px] my-4">Nora</h1>
<h2>About:</h2>
<p>Nora is a very slim aircraft that resembles a flying needle when in the skies. It is very simple to produce.
With a dihydral wing and a sturdy fuselage, the aircraft is incredibly stable and straightforward to pilot.
This is a great option for those who are new to model aviation
</p>
<ul class="mt-4">
<li>General specifications</li>
<li>length:</li>
<li>CG :</li>
<li>Wingspan:</li>
<li>Dry Weight:</li>
<li>Wing loading:</li>
</ul>
</div>
<div class="w-[30%] flex items-center">
<img src="https://raw.githubusercontent.com/sri766/udaan-website/main/images/plane-projects/nora.png" alt="">
</div>
</div>
<div class="flex w-full my-5">
<div class="w-[30%] flex items-center">
<img src="https://raw.githubusercontent.com/sri766/udaan-website/main/images/plane-projects/fatboy.png" alt="">
</div>
<div class="w-[70%] ml-9">
<h1 class="text-[35px] my-4">Fatboy</h1>
<h2>About:</h2>
<p>The fatboy is one of the most trusted cargo plane in our club. With a
large cargo carrying capacity and a dihedral wing, this aircraft is
very versatile, as it can transport cargo and also serves as a trainer
aircraft due to its stability and ease of operation.
</p>
<ul class="mt-4">
<li>General specifications</li>
<li>length:</li>
<li>CG :</li>
<li>Wingspan:</li>
<li>Dry Weight:</li>
<li>Wing loading:</li>
</ul>
</div>
</div>
<div class="flex w-full my-5">
<div class="w-[70%] mr-9">
<h1 class="text-[35px] my-4">Whale</h1>
<h2>About:</h2>
<p>About A huge plane that looks like a flying whole when it's in the air, it can carry
a lot of cargo and has a tapered trailing edge that gives it the aerodynamic benefits
of a longer wingspan without the extra weight and drog. The wing is set up like a parachute
so it can lift more.
</p>
<ul class="mt-4">
<li>General specifications</li>
<li>length:</li>
<li>CG :</li>
<li>Wingspan:</li>
<li>Dry Weight:</li>
<li>Wing loading:</li>
</ul>
</div>
<div class="w-[30%] flex items-center">
<img src="https://raw.githubusercontent.com/sri766/udaan-website/main/images/plane-projects/whale.png" alt="">
</div>
</div>
<div class="flex w-full my-5">
<div class="w-[30%] flex items-center">
<img src="https://github.com/sri766/udaan-website/blob/main/images/plane-projects/elephant.png?raw=true" alt="">
</div>
<div class="w-[70%] ml-9">
<h1 class="text-[35px] my-4">Elephent</h1>
<h2>About:</h2>
<p>About Inspired by Boeing C-17 Globemaster e elephant which indeed a cargo plane
gives a vibe of military air craft has an incredible cargo carrying capacity with
its light weight body it required very less thrust while flying without cargo because
of its high lift.
</p>
<ul class="mt-4">
<li>General specifications</li>
<li>length:</li>
<li>CG :</li>
<li>Wingspan:</li>
<li>Dry Weight:</li>
<li>Wing loading:</li>
</ul>
</div>
</div>
<div class="flex w-full my-5">
<div class="w-[70%] mr-9">
<h1 class="text-[35px] my-4">Surprise</h1>
<h2>About:</h2>
<p>Surprise is the combination of slim and a cargo carrying capable plane which is
similar to its previous version NORA. This plane has a very redge fuselage made up
from composite of wood and corrugated plastic. It has a long cord length which helps
it to give more lift.
</p>
<ul class="mt-4">
<li>General specifications</li>
<li>length:</li>
<li>CG :</li>
<li>Wingspan:</li>
<li>Dry Weight:</li>
<li>Wing loading:</li>
</ul>
</div>
<div class="w-[30%] flex items-center">
<img src="https://github.com/sri766/udaan-website/blob/main/images/plane-projects/surprise.png?raw=true" alt="">
</div>
</div>
<div>
<div class="flex w-full my-5">
<div class="w-[30%] flex items-center">
<img src="https://github.com/sri766/udaan-website/blob/main/images/plane-projects/udn%20Glider.png?raw=true" alt="">
</div>
<div class="w-[70%] ml-9">
<h1 class="text-[35px] my-4">UND Glider</h1>
<h2>About:</h2>
<p>RC Glider- A radio-controlled (RC) glider is a remote-controlled gecraft designed
to scor through the air using the power of wind and thermals. It is a sleek and
lightweight aircroft with an aerodynamic design, allowing it to achieve long flight
times and graceful gliding monoeuvres. RC gliders excel at scaring and riding thermals,
which are columns of rising warm air. We can skil-fully exploit these thanmals;
glider can achi long tight durations and cover considerable distances without the
need for an onboard power source.
</p>
</div>
</div>
<div class="flex w-full my-5">
<div class="w-[30%] flex">
<ul class="mt-4">
<li>General specifications</li>
<li>length: 120cm</li>
<li>CG : About 45cm From Nose</li>
<li>Wingspan: 200cm Dry Weight 1.5kg</li>
<li>Dry Weight:</li>
<li>Wing loading:</li>
</ul>
</div>
<div class="w-[70%] ml-9">
<h3 class="text-">Uses of RC Glider-</h3>
<div>
<ol class="list-decimal">
<li>
<p>Recreation and Hobby: Many people enjoy flying RC gliders as a recreational activity and a hobby.
It offers an immersive and relaxing flying experiance. allowing individuals to spend time outdoors
while enjoying the thril of piloting on aircraft</p>
</li>
<li>
<p>
Aric Photography and Videography: RC glider can be equipped with cameras or FPV (First Person View)
systems to capture stunning perial photographs and videos, The quiet and stable flight characteristics
of gliders make them well-suited for capturing aerial footage in a smooth and cinematic manner.
</p>
</li>
<li>
<p>
Scientific Research: RC Gliders are used in scientific research for various
purposes. They can be employed to study atmospheric conditions. gather date on wind potterns,
or monitor wildlife and ecosystems from an aerial perspective.