-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1047 lines (873 loc) · 49.1 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
---
layout: default
title: Elara Aerospace
permalink: /
header-title: Up to Space.<br> And Far Beyond.
header-desc: "Join Us on a Historic Journey: <br>Be Part of the First Student <br>Methalox Rocket to Reach <br>100 km into orbit."
header-image: /assets/images/Starlight_V6_2024-rocket.png
header-image-height: 1376
header-image-width: 3424
scroll-link: "#about"
first-button: "<a href='/apply/' class='btn btn--primary'>Join Us</a>"
second-button: "<a href='/partners/' class='btn btn--stroke'>Partner With Us</a>"
---
<!-- about
================================================== -->
<section id='about' class="s-about">
<div class="row section-header has-bottom-sep" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead subhead--dark">Hello There! We Are</h3>
<h1 class="display-1 display-1--light">
<div class="tektur">Elara Aerospace</div>
</h1>
</div>
</div>
<!-- end section-header -->
<div class="row about-desc" data-aos="fade-up">
<div class="col-full">
<p>
We are an incorporated nonprofit student club with a focus on building rockets. We see the current state of aerospace destined for disruption and want to shape the future of the industry with innovative concepts. <b>We aim to build the world’s largest reusable Methalox rocket made by students and under 30 years olds that reaches 150 km into orbit.</b> Our initiative plans to break multiple world records and has been featured on various media outlets.
</p>
</div>
</div>
<!-- end about-desc -->
<br />
<center>
<a href='/about/' class='btn btn--secondary' data-aos="fade-up">About Us</a>
<a href='/inspiration/' class='btn btn--secondary' data-aos="fade-up">What Inspires Us</a>
<a href='/press/' class='btn btn--secondary' data-aos="fade-up">What the Media is talking about us</a>
</center>
<div class="row about-stats stats block-1-4 block-m-1-2 block-mob-full" data-aos="fade-up">
<div class="col-block stats__col">
<a href="/partners/">
<h5>Affiliated Universities</h5>
<!-- Automatically count the amount of academic partners at Elara Aerospace -->
{% assign university_partners = site.data.companies | where: "category", "University Partners" %}
<div class="stats__count tektur">{{ university_partners | size }}</div>
</a>
</div>
<div class="col-block stats__col">
<a href="/team/">
<h5>Total Members</h5>
{% assign team_members = 0 %} {% for file in site.data.team %}
<!-- Exclude Advisors & Supporters (and the headers.yml file) -->
{% if file[0] != 'advisors' and file[0] != 'headers' %}
<!-- Automatically count the amount of members at Elara Aerospace -->
{% assign team_members = team_members | plus: file[1].size %} {% endif %} {% endfor %}
<div class="stats__count tektur">{{ team_members }}</div>
</a>
</div>
<div class="col-block stats__col">
<a href="/partners/">
<h5>Supportive Partners</h5>
<!-- Automatically count the amount of external partners at Elara Aerospace -->
<div class="stats__count tektur">{{ site.data.companies | size }}</div>
</a>
</div>
<div class="col-block stats__col">
<a href="/about/">
<h5>Incorporated in</h5>
<div class="stats__nocount tektur">2025</div>
</a>
</div>
</div>
<!-- end about-stats -->
<center>
<div data-aos="fade-up">
<a href="/mission/">
<h5>Rocket Launch in</h5>
<div class="stats__nocount tektur" id="countdown"></div>
</a>
</div>
</center>
<br/><br/><br/>
<center>
<div data-aos="fade-up">
<a target="_blank" href="https://www.deutschland.de/en/topic/business/made-in-germany-where-it-comes-from-and-what-it-means">
<img src="/assets/images/made-in-germany.png" alt="Learn more about the Made in Germany initiative" width="400" />
</a>
</div>
</center>
<div class="about__line"></div>
</section>
<!-- end s-about -->
<!-- services
================================================== -->
<section id='services' class="s-services">
<div class="row section-header has-bottom-sep" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead">Our Philosophy</h3>
<h1 class="display-2">What We Want To Do</h1>
</div>
</div>
<!-- end section-header -->
<div class="row about-desc" data-aos="fade-up">
<div class="col-full">
<p>
We’ve got everything you need to launch your payload into space:
</p>
</div>
</div>
<!-- end about-desc -->
<div class="row services-list block-1-2 block-tab-full">
<div class="col-block service-item" data-aos="fade-up">
<div class="service-icon">
<i class="icon-lego-block"></i>
</div>
<div class="service-text">
<h3 class="h2">Additive Manufacturing</h3>
<p>Develop a design that is easily adjustable and leverages the benefits of Additive Manufacturing
</p>
</div>
</div>
<div class="col-block service-item" data-aos="fade-up">
<div class="service-icon">
<i class="icon-group"></i>
</div>
<div class="service-text">
<h3 class="h2">Reusability</h3>
<p>Repurpose boosters and salvage compnents for future launches, all while reducing expenses
</p>
</div>
</div>
<div class="col-block service-item" data-aos="fade-up">
<div class="service-icon">
<i class="icon-megaphone"></i>
</div>
<div class="service-text">
<h3 class="h2">High Launch Cadence</h3>
<p>1 launch per month to maintain Europe's competitiveness in aerospace in a competitive world
</p>
</div>
</div>
<div class="col-block service-item" data-aos="fade-up">
<div class="service-icon">
<i class="icon-earth"></i>
</div>
<div class="service-text">
<h3 class="h2">Sustainability</h3>
<p>Using clean burning fuels, with 50% of exhaust product being water
</p>
</div>
</div>
</div>
<!-- end services-list -->
<br/><br/>
<center>
<a href='/tech/' class='btn btn--primary' data-aos="fade-up">The Technology Behind Our Rockets</a>
</center>
</section>
<!-- services
================================================== -->
<section id='timeline' class="s-services">
<div class="row section-header has-bottom-sep" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead">Timeline - Project Starlight</h3>
<h1 class="display-2 tektur">Our plan to achieve the <span style="color: #7f02fc; font-weight: bold; text-decoration: underline;">impossible</span></h1>
</div>
</div>
<!-- end section-header -->
<div class="row half-bottom" data-aos="fade-up">
<div class="col-six tab-full">
<h3>Goals in Sight</h3>
<dl>
<dt><strong>Brainstorm</strong></dt>
<dd>Establishing Objectives and a Mission Statement</dd>
<dt><strong>Planning</strong></dt>
<dd>Generating Initial Drafts and Concepts</dd>
<dt><strong>Prototype</strong></dt>
<dd>Manufacture and test each subsystem</dd>
<dt><strong>Launch</strong></dt>
<dd>Launching the rocket at end of Q3 2025</dd>
</dl>
</div>
<br><br>
<div class="col-six tab-full" data-aos="fade-up">
<ul class="skill-bars">
<li>
<div class="progress percent100"><span>100%</span></div>
<strong>Brainstorm</strong>
</li>
<li>
<div class="progress percent100"><span>100%</span></div>
<strong>Planning</strong>
</li>
<li>
<div class="progress percent90"><span>90%</span></div>
<strong>Prototype</strong>
</li>
<li>
<div class="progress percent60"><span>60%</span></div>
<strong>Launch</strong>
</li>
</ul>
</div>
</div>
<center>
<a href='/mission/' class='btn btn--primary' data-aos="fade-up">Our Mission</a>
<a href='/partners/' class='btn' data-aos="fade-up">Support Us on our Journey</a>
</center>
</section>
<!-- end s-services -->
<!-- team
================================================== -->
<section id='team' class="s-about">
<div class="row section-header has-bottom-sep" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead subhead--dark">Bring the brightest students together from different disciplines</h3>
<h1 class="display-1 display-1--light">
<div class="tektur">Dream big with us</div>
</h1>
</div>
</div>
<!-- end section-header -->
<div class="row about-desc" data-aos="fade-up">
<div class="col-full">
<a href="/team/"><img loading="lazy" src="/assets/images/team-may_2024.webp" alt="Elara Aerospace Team (May 2024)"></a>
</div>
</div>
<br/><br/>
<center>
<a href='/team/' class='btn' data-aos="fade-up">Our Team</a>
<a href='/apply/' class='btn' data-aos="fade-up">Choose Your Mission <span class="badge">Apply Now!</span></a>
</center>
</div>
</section>
<!-- highlights
================================================== -->
<section id='highlights' class="s-works">
<div class="intro-wrap">
<div class="row section-header has-bottom-sep light-sep" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead">Highlighted Moments</h3>
<h1 class="display-2 display-2--light">We love what we do, check out what we achieved so far</h1>
</div>
</div>
</div>
<div class="row works-content">
<div class="col-full masonry-wrap">
<div class="masonry">
<!-- Autodesk Workshop -->
<div class="masonry__brick" data-aos="fade-up">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="/assets/images/highlights/autodesk-tutorial.jpg" class="thumb-link" title="Autodesk Workshop with Elara Aerospace" data-size="4000x2250">
<img src="/assets/images/highlights/autodesk-tutorial.jpg" srcset="/assets/images/highlights/autodesk-tutorial.jpg 1x, /assets/images/highlights/autodesk-tutorial.jpg 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Autodesk Fusion Workshop
</h3>
<p class="item-folio__cat">
Munich, Germany
</p>
</div>
<a href="#" class="item-folio__project-link" title="Project link">
<i class="icon-link"></i>
</a>
<div class="item-folio__caption">
<p>The Elara Aerospace team got its first workshop about Autodesk Fusion from Autodesk Germany team</p>
</div>
</div>
</div>
<!-- The Founding Team at RFA -->
<div class="masonry__brick" data-aos="fade-up">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="/assets/images/highlights/rfa.webp" class="thumb-link" title="The Founding Team (without Uta) at RFA" data-size="6048x4032">
<img src="/assets/images/highlights/rfa.webp" srcset="/assets/images/highlights/rfa.webp 1x, /assets/images/highlights/rfa.webp 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Rocket Factory Augsburg (RFA)
</h3>
<p class="item-folio__cat">
Augsburg, Germany
</p>
</div>
<a href="#" class="item-folio__project-link" title="Project link">
<i class="icon-link"></i>
</a>
<div class="item-folio__caption">
<p>Company Visit Tour at Rocket Factory Augsburg (RFA) headquarters (20th December 2023)</p>
</div>
</div>
</div>
<!-- MMK event -->
<div class="masonry__brick" data-aos="fade-up">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="/assets/images/highlights/mmk.webp" class="thumb-link" title="MMK event" data-size="8640x3456">
<img src="/assets/images/highlights/mmk.webp" srcset="/assets/images/highlights/mmk.webp 1x, /assets/images/highlights/mmk.webp 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Elara Aerospace at 31st Münchner Management Kolloquium event
</h3>
<p class="item-folio__cat">
Munich, Germany
</p>
</div>
<a href="#" class="item-folio__project-link" title="Project link">
<i class="icon-link"></i>
</a>
<div class="item-folio__caption">
<p>Exciting news at Ignition Aerospace as we proudly announce our participation in the prestigious Münchner Management Kolloquium, which took place in Munich on the 5th and 6th of March this year. Recognised as one of Germany’s leading business conferences, the MMK attracted over eighty senior executives from a wide range of sectors, including DAX-listed companies, European conglomerates, strong SMEs and start-ups, all coming together to explore the overarching theme of ‘STRONGER TOGETHER - Networking and Collaborating to Build Resilience’.</p>
</div>
</div>
</div>
<!-- TUM president meets Elara Aerospace team -->
<div class="masonry__brick" data-aos="fade-up">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="/assets/images/highlights/1712073103303.jpeg" class="thumb-link" title="TUM president meets Elara Aerospace" data-size="1179x885">
<img src="/assets/images/highlights/1712073103303.jpeg" srcset="/assets/images/highlights/1712073103303.jpeg 1x, /assets/images/highlights/1712073103303.jpeg 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
TUM president meets Elara Aerospace
</h3>
<p class="item-folio__cat">
Munich, Germany
</p>
</div>
<a href="#" class="item-folio__project-link" title="Project link">
<i class="icon-link"></i>
</a>
<div class="item-folio__caption">
<p>TUM president Thomas F. Hofmann meets the founding team of Elara Aerospace at TUM Campus Munich (2nd April 2024)</p>
</div>
</div>
</div>
<!-- TUM president vouches for Elara Aerospace team -->
<div class="masonry__brick" data-aos="fade-up">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="/assets/images/highlights/student-club-launch.webp" class="thumb-link" title="TUM president meets Elara Aerospace" data-size="1179x885">
<img src="/assets/images/highlights/student-club-launch.webp" srcset="/assets/images/highlights/student-club-launch.webp 1x, /assets/images/highlights/student-club-launch.webp 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
TUM president supports Elara Aerospace student club launch
</h3>
<p class="item-folio__cat">
Munich, Germany
</p>
</div>
<a href="#" class="item-folio__project-link" title="Project link">
<i class="icon-link"></i>
</a>
<div class="item-folio__caption">
<p>TUM president Thomas F. Hofmann vouches for Elara Aerospace and supports the team at its student club launch with its Recruiting posters</p>
</div>
</div>
</div>
<!-- Photoshooting Day at HM -->
<div class="masonry__brick" data-aos="fade-up">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="/assets/images/highlights/photoshooting_day.png" class="thumb-link" title="Photoshooting Day at HM" data-size="4032x3024">
<img src="/assets/images/highlights/photoshooting_day.png" srcset="/assets/images/highlights/photoshooting_day.png 1x, /assets/images/highlights/photoshooting_day.png 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Photoshooting Day at Hochschule München
</h3>
<p class="item-folio__cat">
Munich, Germany
</p>
</div>
<a href="#" class="item-folio__project-link" title="Project link">
<i class="icon-link"></i>
</a>
<div class="item-folio__caption">
<p>The whole team together at the Photoshooting Day in front of Hochschule München building</p>
</div>
</div>
</div>
<!-- TNG Consulting Pitch -->
<div class="masonry__brick" data-aos="fade-up">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="/assets/images/highlights/IMG_9006.jpg" class="thumb-link" title="TNG Consulting Pitch" data-size="4032x3024">
<img src="/assets/images/highlights/IMG_9006.jpg" srcset="/assets/images/highlights/IMG_9006.jpg 1x, /assets/images/highlights/IMG_9006.jpg 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Pitch at TNG Technology Consulting
</h3>
<p class="item-folio__cat">
Munich, Germany
</p>
</div>
<a href="#" class="item-folio__project-link" title="Project link">
<i class="icon-link"></i>
</a>
<div class="item-folio__caption">
<p>How to launch a rocket in one year</p>
</div>
</div>
</div>
<!-- TNG Event -->
<div class="masonry__brick" data-aos="fade-up">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="/assets/images/highlights/tng-stand.jpg" class="thumb-link" title="Elara Aerospace x TNG Consulting" data-size="3024x4032">
<img src="/assets/images/highlights/tng-stand.jpg" srcset="/assets/images/highlights/tng-stand.jpg 1x, /assets/images/highlights/tng-stand.jpg 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Elara Aerospace x TNG Consulting event
</h3>
<p class="item-folio__cat">
Munich, Germany
</p>
</div>
<a href="#" class="item-folio__project-link" title="Project link">
<i class="icon-link"></i>
</a>
<div class="item-folio__caption">
<p>Tom Luca Reinhardt at Elara Aerospace booth at TNG Consulting</p>
</div>
</div>
</div>
<!-- AU San Diego -->
<div class="masonry__brick" data-aos="fade-up">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="/assets/images/highlights/au.jpeg" class="thumb-link" title="Elara Aerospace x Autodesk University San Diego" data-size="1200x1600">
<img src="/assets/images/highlights/au.jpeg" srcset="/assets/images/highlights/au.jpeg 1x, /assets/images/highlights/au.jpeg 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Elara Aerospace Autodesk University
</h3>
<p class="item-folio__cat">
San Diego, United States
</p>
</div>
<a href="#" class="item-folio__project-link" title="Project link">
<i class="icon-link"></i>
</a>
<div class="item-folio__caption">
<p>Elara Aerospace in San Diego (USA) at Autodesk University</p>
</div>
</div>
</div>
<!-- EA x Autodesk in San Diego -->
<div class="masonry__brick" data-aos="fade-up">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="/assets/images/highlights/au-2024.jpg" class="thumb-link" title="Elara Aerospace x Autodesk team" data-size="3024x4032">
<img src="/assets/images/highlights/au-2024.jpg" srcset="/assets/images/highlights/au-2024.jpg 1x, /assets/images/highlights/au-2024.jpg 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Elara Aerospace x Autodesk team
</h3>
<p class="item-folio__cat">
San Diego, United States
</p>
</div>
<a href="#" class="item-folio__project-link" title="Project link">
<i class="icon-link"></i>
</a>
<div class="item-folio__caption">
<p>Get Together of Elara Aerospace team and Autodesk team at the Autodesk University 2024 event in San Diego (USA)</p>
</div>
</div>
</div>
<!-- AU Award -->
<div class="masonry__brick" data-aos="fade-up">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="/assets/images/highlights/au-award.jpeg" class="thumb-link" title="Elara Aerospace wins AU award" data-size="1535x1536">
<img src="/assets/images/highlights/au-award.jpeg" srcset="/assets/images/highlights/au-award.jpeg 1x, /assets/images/highlights/au-award.jpeg 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Elara Aerospace wins Autodesk award
</h3>
<p class="item-folio__cat">
USA
</p>
</div>
<a href="#" class="item-folio__project-link" title="Project link">
<i class="icon-link"></i>
</a>
<div class="item-folio__caption">
<p>Theresa Schmitt and Tobias Jäger win the Autodesk University awards 2024</p>
</div>
</div>
</div>
<!-- Blackwave -->
<div class="masonry__brick" data-aos="fade-up">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="/assets/images/highlights/blackwave.jpg" class="thumb-link" title="Elara Aerospace x Blackwave" data-size="4032x2268">
<img src="/assets/images/highlights/blackwave.jpg" srcset="/assets/images/highlights/blackwave.jpg 1x, /assets/images/highlights/blackwave.jpg 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Elara Aerospace x Blackwave
</h3>
<p class="item-folio__cat">
Taufkirchen, Germany
</p>
</div>
<a href="#" class="item-folio__project-link" title="Project link">
<i class="icon-link"></i>
</a>
<div class="item-folio__caption">
<p>Get Together of Elara Aerospace team at Blackwave (7th November 2024)<br> (Elara Aerospace members in last row: Fynn, Jozef, Peter / first side: Rufus, Suriyaa, Theresa, Chirag, Adrian)</p>
</div>
</div>
</div>
<!-- MT Aerospace -->
<div class="masonry__brick" data-aos="fade-up">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="/assets/images/highlights/mt-aerospace.jpg" class="thumb-link" title="Elara Aerospace x MT Aerospace" data-size="6000x2268">
<img src="/assets/images/highlights/mt-aerospace.jpg" srcset="/assets/images/highlights/mt-aerospace.jpg 1x, /assets/images/highlights/mt-aerospace.jpg 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Elara Aerospace x MT Aerospace
</h3>
<p class="item-folio__cat">
Friedberg, Germany
</p>
</div>
<a href="#" class="item-folio__project-link" title="Project link">
<i class="icon-link"></i>
</a>
<div class="item-folio__caption">
<p>Elara Aerospace visits factory of MT Aerospace</p>
</div>
</div>
</div>
<!-- Voxeljet -->
<div class="masonry__brick" data-aos="fade-up">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="/assets/images/highlights/elara-aerospace-voxeljet-3d-printing-factory-tour-2025.webp" class="thumb-link" title="Elara Aerospace x Voxeljet" data-size="5200x4160">
<img src="/assets/images/highlights/elara-aerospace-voxeljet-3d-printing-factory-tour-2025.webp" srcset="/assets/images/highlights/elara-aerospace-voxeljet-3d-printing-factory-tour-2025.webp 1x, /assets/images/highlights/elara-aerospace-voxeljet-3d-printing-factory-tour-2025.webp 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Elara Aerospace x Voxeljet
</h3>
<p class="item-folio__cat">
Friedberg, Germany
</p>
</div>
<a href="#" class="item-folio__project-link" title="Project link">
<i class="icon-link"></i>
</a>
<div class="item-folio__caption">
<p>Elara Aerospace visits Voxeljet<br> (left side: Tobias Jäger / right side: Suriyaa Sundararuban)</p>
</div>
</div>
</div>
<!-- Ansys Event -->
<div class="masonry__brick" data-aos="fade-up">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="/assets/images/highlights/ansys-event.jpg" class="thumb-link" title="Ansys event" data-size="2268x4032">
<img src="/assets/images/highlights/ansys-event.jpg" srcset="/assets/images/highlights/ansys-event.jpg 1x, /assets/images/highlights/ansys-event.jpg 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Ansys event
</h3>
<p class="item-folio__cat">
Munich, Germany
</p>
</div>
<a href="#" class="item-folio__project-link" title="Project link">
<i class="icon-link"></i>
</a>
<div class="item-folio__caption">
<p>Elara Aerospace at Ansys event</p>
</div>
</div>
</div>
<!-- Recruiting with Peter -->
<div class="masonry__brick" data-aos="fade-up">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="/assets/images/highlights/peter-garching.jpg" class="thumb-link" title="Elara Aerospace Recruiting" data-size="2268x4032">
<img src="/assets/images/highlights/peter-garching.jpg" srcset="/assets/images/highlights/peter-garching.jpg 1x, /assets/images/highlights/peter-garching.jpg 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
New Semester Recruiting
</h3>
<p class="item-folio__cat">
Garching, Germany
</p>
</div>
<a href="#" class="item-folio__project-link" title="Project link">
<i class="icon-link"></i>
</a>
<div class="item-folio__caption">
<p>Recruiting new people with Peter von Grundherr in Garching</p>
</div>
</div>
</div>
<!-- Tech Meeting -->
<div class="masonry__brick" data-aos="fade-up">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="/assets/images/highlights/tech-meeting.webp" class="thumb-link" title="Elara Aerospace Tech Meeting" data-size="800x1422">
<img src="/assets/images/highlights/tech-meeting.webp" srcset="/assets/images/highlights/tech-meeting.webp 1x, /assets/images/highlights/tech-meeting.webp 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Tech Meeting
</h3>
<p class="item-folio__cat">
Garching, Germany
</p>
</div>
<a href="#" class="item-folio__project-link" title="Project link">
<i class="icon-link"></i>
</a>
<div class="item-folio__caption">
<p>Elara Aerospace team working in their Tech Meetings</p>
</div>
</div>
</div>
<!-- Munich Security Conference -->
<div class="masonry__brick" data-aos="fade-up">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="/assets/images/highlights/msc.jpg" class="thumb-link" title="Elara Aerospace x MT Aerospace" data-size="6000x2268">
<img src="/assets/images/highlights/msc.jpg" srcset="/assets/images/highlights/msc.jpg 1x, /assets/images/highlights/msc.jpg 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Elara Aerospace x Munich Security Conference (MSC)
</h3>
<p class="item-folio__cat">
Munich, Germany
</p>
</div>
<a href="#" class="item-folio__project-link" title="Project link">
<i class="icon-link"></i>
</a>
<div class="item-folio__caption">
<p>Elara Aerospace visits Munich Security Conference 2025</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- clients
================================================== -->
<section id="sponsors" class="s-clients">
<div class="row section-header" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead">Lets Reach Space Together</h3>
<h1 class="display-2">Partner with Elara Aerospace and shape the future of aerospace</h1>
</div>
</div>
<!-- end section-header -->
<div class="row clients-outer" data-aos="fade-up">
<div class="col-full">
<div class="clients">
<a target="_blank" href="https://www.tum.de/" title="Technische Universität München" class="clients__slide"><img loading="lazy" alt="Technische Universität München" src="/assets/images/partners/tum.png" /></a>
<a target="_blank" href="https://www.hm.edu/" title="Hochschule München" class="clients__slide"><img loading="lazy" alt="Hochschule München" src="/assets/images/partners/hochschule-muenchen.png" /></a>
<!-- <a target="_blank" href="https://daytonabeach.erau.edu/" title="Embry-Riddle Aeronautical University (Daytona Beach)" class="clients__slide"><img alt="Embry-Riddle Aeronautical University (Daytona Beach)" src="/assets/images/partners/embry-university.png" /></a> -->
<a target="_blank" href="https://www.unibw.de/home-en" title="Universität der Bundeswehr München (UniBw)" class="clients__slide"><img loading="lazy" alt="Universität der Bundeswehr München (UniBw)" src="/assets/images/partners/unibw.png" /></a>
<a target="_blank" href="https://www.launch-olm.com/" title="OLM Launch" class="clients__slide"><img loading="lazy" alt="OLM Launch" src="/assets/images/partners/olm.png" /></a>
<a target="_blank" href="https://www.autodesk.com/" title="Autodesk" class="clients__slide"><img loading="lazy" alt="Autodesk" src="/assets/images/partners/autodesk.png" /></a>
<a target="_blank" href="https://www.ansys.com/" title="Ansys" class="clients__slide"><img loading="lazy" alt="Ansys" src="/assets/images/partners/ansys.png" /></a>
<a target="_blank" href="https://formlabs.com/" title="Formlabs" class="clients__slide"><img loading="lazy" alt="Formlabs" src="/assets/images/partners/formlabs.png" /></a>
<a target="_blank" href="https://www.stokefusion.com/" title="Fusion by Stoke Space" class="clients__slide"><img loading="lazy" alt="Fusion by Stoke Space" src="/assets/images/partners/stoke-space.png" /></a>
<a target="_blank" href="https://www.unternehmertum.de/en/services/makerspace" title="Makerspace" class="clients__slide"><img loading="lazy" alt="Makerspace" src="/assets/images/partners/makerspace.png" /></a>
<a target="_blank" href="https://thevirtualfoundry.com/" title="The Virtual Foundry" class="clients__slide"><img loading="lazy" alt="The Virtual Foundry" src="/assets/images/partners/the-virtual-foundry.png" /></a>
<a target="_blank" href="https://www.boellhoff.com/de-en/locations-worldwide/" title="Böllhoff" class="clients__slide"><img loading="lazy" alt="Böllhoff" src="/assets/images/partners/boellhoff.png" /></a>
<a target="_blank" href="https://accelleron-industries.com/" title="Accelleron Switzerland Ltd" class="clients__slide"><img loading="lazy" alt="Accelleron Switzerland Ltd" src="/assets/images/partners/accelleron.png" /></a>
<a target="_blank" href="https://www.creality.com/" title="Shenzhen Creality 3D Technology Co., Ltd." class="clients__slide"><img loading="lazy" alt="Shenzhen Creality 3D Technology Co., Ltd." src="/assets/images/partners/creality.png" /></a>
</div>
<!-- end clients -->
</div>
<!-- end col-full -->
</div>
<!-- end clients-outer -->
<center>
<a href='/partners/' class='btn btn--primary' data-aos="fade-up">List of all our Partners</a>
<a href='/contact/' class='btn' data-aos="fade-up">Become a partner - Get In Touch</a>
</center>
<div class="row clients-testimonials" data-aos="fade-up">
<div class="col-full">
<div class="testimonials">
<!-- DEACTIVATED:
<div class="testimonials__slide">
<p>“Elara Aerospace is oafach krass! <br>Des Team dahinta san de besdn.”</p>
<img src="/assets/images/avatars/hofmann-face.jpg" alt="Author image" class="testimonials__avatar">
<div class="testimonials__info">
<span class="testimonials__name">Prof. Dr. Thomas F. Hofmann<br/><i>(He hasn't said it yet! 😉)</i></span>
<span class="testimonials__pos">President, Technical University Munich</span>
</div>
</div>
<div class="testimonials__slide">
<p>Excepturi nam cupiditate culpa doloremque deleniti repellat. Veniam quos repellat voluptas animi adipisci.
Nisi eaque consequatur. Quasi voluptas eius distinctio. Atque eos maxime. Qui ipsam temporibus quisquam vel.</p>
<img src="/assets/images/avatars/hofmann-face.jpg" alt="Author image" class="testimonials__avatar">
<div class="testimonials__info">
<span class="testimonials__name">...</span>
<span class="testimonials__pos">...</span>
</div>
</div>
<div class="testimonials__slide">
<p>Repellat dignissimos libero. Qui sed at corrupti expedita voluptas odit. Nihil ea quia nesciunt. Ducimus aut sed ipsam.
Autem eaque officia cum exercitationem sunt voluptatum accusamus. Quasi voluptas eius distinctio.</p>
<img src="/assets/images/avatars/hofmann-face.jpg" alt="Author image" class="testimonials__avatar">
<div class="testimonials__info">
<span class="testimonials__name">...</span>
<span class="testimonials__pos">...</span>
</div>
</div>
-->
</div>
<!-- end testimonials -->
</div>
<!-- end col-full -->
</div>
<!-- end client-testimonials -->
</section>
<!-- end s-clients -->
<!-- contact
================================================== -->
<section id="contact" class="s-contact">
<div class="overlay"></div>
<div class="contact__line"></div>
<div class="row section-header" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead">Contact Us</h3>
<h1 class="display-2 display-2--light">Reach out to Elara Aerospace</h1>
</div>
</div>
<div class="row contact-content" data-aos="fade-up">
<div class="contact-primary">
<script>
if (/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)) {
// true for mobile device
document.write('');
} else {
// false for not mobile device
document.write('<center><b>Location of HM branch</b></center>');
document.write('<iframe title="Embedded OpenStreetMap Map - HM" width="560" height="440" src="https://www.openstreetmap.org/export/embed.html?bbox=11.545954942703249%2C48.151084563095544%2C11.561490297317507%2C48.15743326599005&layer=mapnik&marker=48.154259%2C11.553723" style="border: 1px solid black"></iframe>');
}
</script>
<script>
if (/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)) {
// true for mobile device
document.write('');
} else {
// false for not mobile device
document.write('<center><b>Location of TUM branch</b></center>');
document.write('<iframe title="Embedded OpenStreetMap Map - TUM" width="560" height="440" src="https://www.openstreetmap.org/export/embed.html?bbox=11.562734842300417%2C48.146954263636836%2C11.572777032852175%2C48.15145677479453&layer=mapnik&marker=48.149205568593786%2C11.567755937576294" style="border: 1px solid black"></iframe>');
}
</script>
</div>
<!-- end contact-primary -->
<div class="contact-secondary">
<div class="contact-info">
<h3 class="h6 hide-on-fullwidth">Contact Info</h3>
<div class="cinfo">
<h5>Email Us At</h5>
<p>
</p>
</div>
<div class="cinfo">
<h5>Shipping Address</h5>
<p>
<b>Makerspace GmbH</b><br> c/o Elara Aerospace<br> Lichtenbergstr. 6<br> 85748 Garching bei München<br> Germany
<br>
<br>
<h5>Where to Find Us</h5>
<b>HM Branch:</b><br> Hochschule München<br> c/o Elara Aerospace<br> Lothstr. 21<br> 80335 München<br> Germany
<br>
<br>
<b>TUM Branch:</b><br> Technische Universität München<br> c/o Elara Aerospace<br> Arcisstr. 21<br> 80333 München<br> Germany
</p>
</div>
<ul class="contact-social">
<li>
<a aria-label="Follow Us on LinkedIn" href="https://www.linkedin.com/company/{{ site.linkedin_username }}"><i class="fa-brands fa-linkedin" aria-hidden="true"></i></a>
</li>
<li>
<a aria-label="Follow Us on X" href="https://x.com/{{ site.twitter_username }}"><i class="fa-brands fa-x-twitter" aria-hidden="true"></i></a>
</li>
<li>
<a aria-label="Follow Us on Instagram" href="https://www.instagram.com/{{ site.instagram_username }}/"><i class="fa-brands fa-instagram" aria-hidden="true"></i></a>
</li>
<li>
<a aria-label="Subscribe Us on YouTube" href="https://www.youtube.com/{{ site.youtube_username }}"><i class="fa-brands fa-youtube" aria-hidden="true"></i></a>
</li>
<li>
<a aria-label="Follow Us on GitHub" href="https://github.com/{{ site.github_username }}"><i class="fa-brands fa-github" aria-hidden="true"></i></a>
</li>
</ul>
<!-- end contact-social -->