-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
1388 lines (1096 loc) · 89.4 KB
/
index.html
File metadata and controls
1388 lines (1096 loc) · 89.4 KB
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="ko">
<head>
<title>uEngine — The AI-first Company</title>
<meta name="description" content="유엔진솔루션즈는 2003년 이래 업무 프로세스 관리 (Business Process Management), AI, MSA, 기업용 SNS, PaaS 를 포함한 클라우드 플랫폼, 도메인 기반 개발 방법을 지향하는 개발 프레임워크 등을 개발하고 오픈소스 프로젝트로 제공하는 기술 집약적 기업입니다.">
<meta property="og:image" content="images/index-sum.jpg">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Favicon -->
<link rel="icon" href="images/favicon.png" type="image/png" sizes="any">
<!-- CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css?after">
<link rel="stylesheet" href="css/style-responsive.css">
<link rel="stylesheet" href="css/news-letter.css">
<link rel="stylesheet" href="css/vertical-rhythm.min.css">
<link rel="stylesheet" href="css/magnific-popup.css">
<link rel="stylesheet" href="css/owl.carousel.css">
<link rel="stylesheet" href="css/splitting.css">
<link rel="stylesheet" href="css/YTPlayer.css">
<link rel="stylesheet" href="css/demo-main/demo-main.css">
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css" as="style" crossorigin />
</head>
<body class="appear-animate">
<!-- Page Loader -->
<div class="page-loader">
<div class="loader">Loading...</div>
</div>
<!-- End Page Loader -->
<!-- Skip to Content -->
<a href="#main" class="btn skip-to-content">Skip to Content</a>
<!-- End Skip to Content -->
<!-- Page Wrap -->
<div class="page" id="top">
<!-- Navigation Panel -->
<nav class="main-nav dark light-after-scroll transparent stick-fixed wow-menubar">
<div class="main-nav-sub full-wrapper">
<div class="nav-logo-wrap local-scroll">
<a href="index.html" class="logo">
<img src="images/logo-w.png" alt="uEngine Logo" width="105" height="34" class="logo-white" />
<img src="images/logo-b.png" alt="uEngine Logo" width="105" height="34" class="logo-dark" />
</a>
</div>
<!-- Mobile Menu Button -->
<div class="mobile-nav" role="button" tabindex="0">
<!-- 모바일 문의하기 -->
<a href="contents/contactus.html" class="opacity-1 no-hover mobile-chat"><span class="link-hover-anim underline" data-link-animate="y">문의하기</span></a>
<i class="mobile-nav-icon"></i>
<span class="visually-hidden">Menu</span>
</div>
<!-- Main Menu -->
<div class="inner-nav desktop-nav">
<ul class="clearlist local-scroll">
<!-- Item With Sub -->
<li>
<a href="#" class="mn-has-sub active">AI For Development <i class="mi-chevron-down"></i></a>
<!-- Sub Megamenu -->
<ul class="mn-sub mn-has-multi">
<!-- Sub Column -->
<li class="mn-sub-multi">
<span class="mn-group-title"><Products></span>
<ul>
<li>
<a href="https://www.msaez.io/" target="_blank" style="font-size: 18px;">MSA Easy (SaaS)</a>
</li>
<li>
<a href="contents/dreamvibe.html" style="font-size: 18px;">DreamVibe</a>
</li>
<li>
<a href="contents/dxez.html" style="font-size: 18px;">DX Easy (On-Prem)</a>
</li>
<li>
</li>
<a href="contents/legacymodernizer.html" style="font-size: 18px;">Legacy Modernizer</a>
</li>
</ul>
<span class="mn-group-title" style="margin-top: 20px;"><Education></span>
<ul>
<li>
<a href="https://www.msaschool.io/operation/introduction/" target="_blank" style="font-size: 18px;">Education for MSA</a>
</li>
<li>
<a href="contents/educationvibecoding.html" style="font-size: 18px;">Education for Vibecoding</a>
</li>
</ul>
<span class="mn-group-title" style="margin-top: 20px;"><Cunsulting></span>
<ul>
<li>
<a href="contents/consultingmsa.html" style="font-size: 18px;">MSA Consulting</a>
</li>
<li>
<a href="contents/leaddevelopment.html" style="font-size: 18px;">선도개발 구현 컨설팅</a>
</li>
</ul>
<ul style="margin-top: 30px;">
<li>
<a href="contents/casestudiesmsa.html" style="font-size: 18px;">Case Studies</a>
</li>
</ul>
</li>
<!-- End Sub Column -->
</ul>
<!-- End Sub Megamenu -->
</li>
<!-- End Item With Sub -->
<!-- Item With Sub -->
<li>
<a href="#" class="mn-has-sub active">AI For Business Process <i class="mi-chevron-down"></i></a>
<!-- Sub Megamenu -->
<ul class="mn-sub mn-has-multi">
<!-- Sub Column -->
<li class="mn-sub-multi">
<span class="mn-group-title"><Products></span>
<ul>
<li>
<a href="contents/uengine6bpm.html" style="font-size: 18px;">uEngine6 BPM</a>
</li>
<li>
<a href="contents/processgpt.html" style="font-size: 18px;">Process GPT</a>
</li>
</ul>
<span class="mn-group-title" style="margin-top: 20px;"><Education></span>
<ul>
<li>
<a href="contents/educationbpm.html" style="font-size: 18px;">Education for BPM</a>
</li>
<li>
<a href="contents/educationforai.html" style="font-size: 18px">수요자용 AI 교육</a>
</li>
<li>
<a href="contents/educationaiagent.html" style="font-size: 18px">공급자용 AI 교육</a>
</li>
</ul>
<span class="mn-group-title" style="margin-top: 20px;"><Cunsulting></span>
<ul>
<li>
<a href="contents/consultingbpm.html" style="font-size: 18px">BPM Consulting</a>
</li>
</ul>
<ul style="margin-top: 30px;">
<li>
<a href="contents/casestudiesbpm.html" style="font-size: 18px;">Case Studies</a>
</li>
</ul>
</li>
<!-- End Sub Column -->
</ul>
<!-- End Sub Megamenu -->
</li>
<!-- End Item With Sub -->
<!-- Item With Sub -->
<li>
<a href="#" class="mn-has-sub active">About <i class="mi-chevron-down"></i></a>
<!-- Sub Megamenu -->
<ul class="mn-sub mn-has-multi">
<!-- Sub Column -->
<li class="mn-sub-multi">
<!-- <span class="mn-group-title"><Company></span> -->
<ul>
<li>
<a href="contents/history.html" style="font-size: 18px;">History</a>
</li>
<li>
<a href="contents/partners.html" style="font-size: 18px;">Partners</a>
</li>
</ul>
<!--
<ul style="margin-top: 30px;">
<li>
<a href="contents/casestudiesbpm.html" style="font-size: 18px;">Case Studies</a>
</li>
</ul> -->
</li>
<!-- End Sub Column -->
</ul>
<!-- End Sub Megamenu -->
</li>
<!-- End Item With Sub -->
<!-- Item With Sub -->
<li>
<a href="#" class="mn-has-sub active">Insights <i class="mi-chevron-down"></i></a>
<!-- Sub Megamenu -->
<ul class="mn-sub mn-has-multi">
<!-- Sub Column -->
<li class="mn-sub-multi">
<span class="mn-group-title"><News></span>
<ul>
<li>
<a href="contents/newsroom.html" style="font-size: 18px;">Newsroom</a>
</li>
<li>
<a href="https://uengine.stibee.com/" target="_blank" style="font-size: 18px;">Newsletter</a>
</li>
<li>
<a href="contents/interview.html" style="font-size: 18px;">Interview</a>
</li>
</li>
</ul>
<span class="mn-group-title" style="margin-top: 20px;"><Seminar></span>
<ul>
<li>
<a href="contents/webinars.html" style="font-size: 18px;">webinars</a>
</li>
</ul>
<ul style="margin-top: 30px;">
<li>
<a href="contents/bloglist.html" style="font-size: 18px;">Blogs</a>
</li>
</ul>
<!--
<ul style="margin-top: 30px;">
<li>
<a href="contents/casestudiesbpm.html" style="font-size: 18px;">Case Studies</a>
</li>
</ul> -->
</li>
<!-- End Sub Column -->
</ul>
<!-- End Sub Megamenu -->
</li>
<!-- End Item With Sub -->
</ul>
<ul class="items-end clearlist">
<li class="pc-chat"><a href="contents/contactus.html" class="opacity-1 no-hover"><span class="link-hover-anim underline" data-link-animate="y">문의하기</span></a></li>
<!-- <li><a href="contents/bloglist.html" class="opacity-1 no-hover"><span class="link-hover-anim underline" data-link-animate="y">Blogs</span></a></li> -->
<!-- Languages -->
<!-- <li>
<a href="#" class="mn-has-sub opacity-1">Kr <i class="mi-chevron-down"></i></a>
<ul class="mn-sub to-left">
<li><a href="enIndex.html">English</a></li>
<li><a href="index.html">Korean</a></li>
</ul>
</li> -->
<!-- End Languages -->
</ul>
</div>
<!-- End Main Menu -->
</div>
</nav>
<!-- End Navigation Panel -->
<main id="main">
<!-- Fullwidth Slider -->
<div class="home-section fullwidth-slider-fade bg-dark light-content" id="home">
<!-- Slide Item - process gpt -->
<section class="home-section bg-scroll bg-dark-alpha-60 light-content" style="background-color: #111;">
<div class="container min-height-100vh d-flex align-items-center pt-100 pb-100 pt-sm-120 pb-sm-120">
<!-- Home Section Content -->
<div class="home-content">
<div class="row main-slide">
<div class="main-slide-img">
<img src="images/full-width-images/main-img-processgpt.png" alt="Process GPT" class="wow scaleOutIn">
</div>
<!-- Home Section Text -->
<div class="main-slide-txt col-md-10 mb-20 mb-sm-0">
<h2 class="hs-title-11 mb-30 mb-xs-10 owl-animate-fadeInUp">
AI For Business Process
</h2>
<h1 class="hs-title-12 mb-50 mb-sm-30">
<span class="owl-animate-chars" data-splitting="chars">Process GPT</span>
</h1>
<h2 class="hs-title-11i mb-30 mb-xs-10 owl-animate-fadeInUp">
생성 AI(LLM)의 기능으로 비즈니스 프로세스를 자연어로 정의하고 실행 가능한 모델로 변환합니다. BPM 작업을 단순화하고 비용과 노력을 절감하며, 비즈니스 효율성을 향상시킵니다.
</h2>
<div class="local-scroll owl-animate-fadeInUp owl-delay-700 wch-unset">
<a href="contents/processgpt.html" class="btn btn-mod btn-border-w btn-large btn-round ms-1 me-1 mt-2 align-middle" data-btn-animate="y">Learn More</a>
<!-- <a href="contents/processgpt.html" class="btn btn-mod btn-w btn-large btn-round ms-1 me-1 mt-2 align-middle" data-btn-animate="y">Process GPT</a> -->
</div>
</div>
<!-- End Home Section Text -->
</div>
</div>
<!-- End Home Section Content -->
<!-- Scroll Down -->
<div class="local-scroll scroll-down-wrap-4 d-none d-sm-block wow fadeInUp" data-wow-offset="0">
<div class="full-wrapper text-end">
<a href="#news" class="scroll-down-4">
<i class="mi-arrow-down size-24"></i>
</a>
</div>
</div>
<!-- End Scroll Down -->
<!-- Status -->
<div class="hs-status d-none d-sm-block wow fadeInUp" data-wow-offset="0">
uEngine, The AI-first Company
<!-- Based in Seoul, South of Korea -->
</div>
<!-- End Status -->
</div>
</section>
<!-- End Slide Item -->
<!-- Slide Item - Legacy Modernizer -->
<section class="home-section bg-scroll bg-dark-alpha-60 light-content" style="background-color: #111;">
<div class="container min-height-100vh d-flex align-items-center pt-100 pb-100 pt-sm-120 pb-sm-120">
<!-- Home Section Content -->
<div class="home-content">
<div class="row main-slide">
<div class="main-slide-img">
<img src="images/full-width-images/main-img-legacy.png" alt="Legacy Modernizer">
</div>
<!-- Home Section Text -->
<div class="main-slide-txt col-md-10 mb-20 mb-sm-0">
<h2 class="hs-title-11 mb-30 mb-xs-10 owl-animate-fadeInUp">
AI For Development
</h2>
<h1 class="hs-title-12 mb-50 mb-sm-30">
<span class="owl-animate-chars" data-splitting="chars">Legacy Modernizer</span>
</h1>
<h2 class="hs-title-11i mb-30 mb-xs-10 owl-animate-fadeInUp">
AI 기반 레거시 모더나이저 도구는 기존의 복잡한 스토어드 프로시저를 현대적이고 클린한 자바 아키텍처로 변환하도록 설계되어 시간과 비용을 절감하고, 오류를 최소화하여, 효율을 높일 수 있습니다.
</h2>
<div class="local-scroll owl-animate-fadeInUp owl-delay-700 wch-unset">
<a href="contents/legacymodernizer.html" class="btn btn-mod btn-border-w btn-large btn-round ms-1 me-1 mt-2 align-middle" data-btn-animate="y">Learn More</a>
<!-- <a href="contents/processgpt.html" class="btn btn-mod btn-w btn-large btn-round ms-1 me-1 mt-2 align-middle" data-btn-animate="y">Process GPT</a> -->
</div>
</div>
<!-- End Home Section Text -->
</div>
</div>
<!-- End Home Section Content -->
<!-- Scroll Down -->
<div class="local-scroll scroll-down-wrap-4 d-none d-sm-block wow fadeInUp" data-wow-offset="0">
<div class="full-wrapper text-end">
<a href="#news" class="scroll-down-4">
<i class="mi-arrow-down size-24"></i>
</a>
</div>
</div>
<!-- End Scroll Down -->
<!-- Status -->
<div class="hs-status d-none d-sm-block wow fadeInUp" data-wow-offset="0">
uEngine, The AI-first Company
<!-- Based in Seoul, South of Korea -->
</div>
<!-- End Status -->
</div>
</section>
<!-- End Slide Item -->
<!-- Slide Item - uengine6 bpm -->
<section class="home-section bg-scroll bg-dark-alpha-60 light-content" style="background-color: #111;">
<div class="container min-height-100vh d-flex align-items-center pt-100 pb-100 pt-sm-120 pb-sm-120">
<!-- Home Section Content -->
<div class="home-content">
<div class="row main-slide">
<div class="main-slide-img">
<img src="images/full-width-images/main-img-bpm6.png" alt="uengine6 BPM">
</div>
<!-- Home Section Text -->
<div class="main-slide-txt col-md-10 mb-20 mb-sm-0">
<h2 class="hs-title-11 mb-30 mb-xs-10 owl-animate-fadeInUp">
AI For Business Process
</h2>
<h1 class="hs-title-12 mb-50 mb-sm-30">
<span class="owl-animate-chars" data-splitting="chars">uEngine6 BPM</span>
</h1>
<h2 class="hs-title-11i mb-30 mb-xs-10 owl-animate-fadeInUp">
LG 디스플레이, SK 텔레콤, 기업은행 등 기업에서 검증된 uEngine BPMS를 활용하여 기업의 프로세스 혁신과 통제를 통한 생산성과 표준화된 품질을 확보하세요.
</h2>
<div class="local-scroll owl-animate-fadeInUp owl-delay-700 wch-unset">
<a href="contents/uengine6bpm.html" class="btn btn-mod btn-border-w btn-large btn-round ms-1 me-1 mt-2 align-middle" data-btn-animate="y">Learn More</a>
<!-- <a href="contents/processgpt.html" class="btn btn-mod btn-w btn-large btn-round ms-1 me-1 mt-2 align-middle" data-btn-animate="y">Process GPT</a> -->
</div>
</div>
<!-- End Home Section Text -->
</div>
</div>
<!-- End Home Section Content -->
<!-- Scroll Down -->
<div class="local-scroll scroll-down-wrap-4 d-none d-sm-block wow fadeInUp" data-wow-offset="0">
<div class="full-wrapper text-end">
<a href="#news" class="scroll-down-4">
<i class="mi-arrow-down size-24"></i>
</a>
</div>
</div>
<!-- End Scroll Down -->
<!-- Status -->
<div class="hs-status d-none d-sm-block wow fadeInUp" data-wow-offset="0">
uEngine, The AI-first Company
<!-- Based in Seoul, South of Korea -->
</div>
<!-- End Status -->
</div>
</section>
<!-- End Slide Item -->
<!-- Slide Item - msa easy -->
<section class="home-section bg-scroll bg-dark-alpha-60 light-content" style="background-color: #111;">
<div class="container min-height-100vh d-flex align-items-center pt-100 pb-100 pt-sm-120 pb-sm-120">
<!-- Home Section Content -->
<div class="home-content">
<div class="row main-slide">
<div class="main-slide-img">
<img src="images/full-width-images/main-img-msaez.png" alt="MSA Easy">
</div>
<!-- Home Section Text -->
<div class="main-slide-txt col-md-10 mb-20 mb-sm-0">
<h2 class="hs-title-11 mb-30 mb-xs-10 owl-animate-fadeInUp">
AI For Development
</h2>
<h1 class="hs-title-12 mb-50 mb-sm-30">
<span class="owl-animate-chars" data-splitting="chars">MSA Easy</span>
</h1>
<h2 class="hs-title-11i mb-30 mb-xs-10 owl-animate-fadeInUp">
오픈소스 비즈니스 설계 도구로, 마이크로서비스의 분석, 설계, 구현 및 운영을 지원하도록 설계된 통합 플랫폼입니다.
</h2>
<div class="local-scroll owl-animate-fadeInUp owl-delay-700 wch-unset">
<a href="https://www.msaez.io/" target="_blank" class="btn btn-mod btn-border-w btn-large btn-round ms-1 me-1 mt-2 align-middle" data-btn-animate="y">Get Started</a>
<!-- <a href="contents/dxez.html" class="btn btn-mod btn-w btn-large btn-round ms-1 me-1 mt-2 align-middle" data-btn-animate="y">DX Easy</a> -->
</div>
</div>
<!-- End Home Section Text -->
</div>
</div>
<!-- End Home Section Content -->
<!-- Scroll Down -->
<div class="local-scroll scroll-down-wrap-4 d-none d-sm-block wow fadeInUp" data-wow-offset="0">
<div class="full-wrapper text-end">
<a href="#news" class="scroll-down-4">
<i class="mi-arrow-down size-24"></i>
</a>
</div>
</div>
<!-- End Scroll Down -->
<!-- Status -->
<div class="hs-status d-none d-sm-block wow fadeInUp" data-wow-offset="0">
uEngine, The AI-first Company
<!-- Based in Seoul, South of Korea -->
</div>
<!-- End Status -->
</div>
</section>
<!-- End Slide Item -->
<!-- Slide Item - msa school -->
<section class="home-section bg-scroll bg-dark-alpha-60 light-content" style="background-color: #111;">
<div class="container min-height-100vh d-flex align-items-center pt-100 pb-100 pt-sm-120 pb-sm-120">
<!-- Home Section Content -->
<div class="home-content">
<div class="row main-slide">
<div class="main-slide-img">
<img src="images/full-width-images/main-img-msaschool.png" alt="MSA School">
</div>
<!-- Home Section Text -->
<div class="main-slide-txt col-md-10 mb-20 mb-sm-0">
<h2 class="hs-title-11 mb-30 mb-xs-10 owl-animate-fadeInUp">
AI For Development
</h2>
<h1 class="hs-title-12 mb-50 mb-sm-30">
<span class="owl-animate-chars" data-splitting="chars">MSA School</span>
</h1>
<h2 class="hs-title-11i mb-30 mb-xs-10 owl-animate-fadeInUp">
MSA분야 최고의 전문 컨텐츠로 마이크로서비스 시장을 선도할 클라우드 네이티브 전문가를 배출하고 있습니다.
</h2>
<div class="local-scroll owl-animate-fadeInUp owl-delay-700 wch-unset">
<a href="https://www.msaschool.io/operation/introduction/" target="_blank" class="btn btn-mod btn-border-w btn-large btn-round ms-1 me-1 mt-2 align-middle" data-btn-animate="y">Learn More</a>
<!-- <a href="contents/dxez.html" class="btn btn-mod btn-w btn-large btn-round ms-1 me-1 mt-2 align-middle" data-btn-animate="y">DX Easy</a> -->
</div>
</div>
<!-- End Home Section Text -->
</div>
</div>
<!-- End Home Section Content -->
<!-- Scroll Down -->
<div class="local-scroll scroll-down-wrap-4 d-none d-sm-block wow fadeInUp" data-wow-offset="0">
<div class="full-wrapper text-end">
<a href="#news" class="scroll-down-4">
<i class="mi-arrow-down size-24"></i>
</a>
</div>
</div>
<!-- End Scroll Down -->
<!-- Status -->
<div class="hs-status d-none d-sm-block wow fadeInUp" data-wow-offset="0">
uEngine, The AI-first Company
<!-- Based in Seoul, South of Korea -->
</div>
<!-- End Status -->
</div>
</section>
<!-- End Slide Item -->
<!-- Slide Item - llm school -->
<!-- <section class="home-section bg-scroll bg-dark-alpha-60 light-content" style="background-color: #111;">
<div class="container min-height-100vh d-flex align-items-center pt-100 pb-100 pt-sm-120 pb-sm-120">
<div class="home-content">
<div class="row main-slide">
<div class="main-slide-img">
<img src="images/full-width-images/main-img-llmschool.png" alt="LLM School">
</div>
<div class="main-slide-txt col-md-10 mb-20 mb-sm-0">
<h2 class="hs-title-11 mb-30 mb-xs-10 owl-animate-fadeInUp">
AI For Development
</h2>
<h1 class="hs-title-12 mb-50 mb-sm-30">
<span class="owl-animate-chars" data-splitting="chars">LLM School</span>
</h1>
<h2 class="hs-title-11i mb-30 mb-xs-10 owl-animate-fadeInUp">
AI 코딩과 설치형 LLM에 기반한 소프트웨어 아키텍처링부터 레가시 전환, 다양한 AI 코딩 도구를 활용한 소프트웨어 아키텍처링과 프롬프트 엔지니어링 교육을 진행합니다.
</h2>
<div class="local-scroll owl-animate-fadeInUp owl-delay-700 wch-unset">
<a href="https://www.llmschool.ai/operation/introduction/" target="_blank" class="btn btn-mod btn-border-w btn-large btn-round ms-1 me-1 mt-2 align-middle" data-btn-animate="y">Learn More</a>
</div>
</div>
</div>
</div>
<div class="local-scroll scroll-down-wrap-4 d-none d-sm-block wow fadeInUp" data-wow-offset="0">
<div class="full-wrapper text-end">
<a href="#news" class="scroll-down-4">
<i class="mi-arrow-down size-24"></i>
</a>
</div>
</div>
<div class="hs-status d-none d-sm-block wow fadeInUp" data-wow-offset="0">
uEngine, The AI-first Company
</div>
</div>
</section> -->
<!-- End Slide Item -->
<!-- Slide Item / ai for ai -->
<!-- <section class="home-section bg-scroll bg-dark-alpha-60 light-content" style="background-image: url(images/full-width-images/section-bg-6.jpg)">
<div class="container min-height-100vh d-flex align-items-center pt-100 pb-100 pt-sm-120 pb-sm-120">
<div class="home-content">
<div class="row">
<div class="col-md-10 offset-md-1 mb-20 mb-sm-0">
<h2 class="hs-title-11 mb-30 mb-xs-10 owl-animate-fadeInUp">
uEngine, The AI-first Company
</h2>
<h1 class="hs-title-12 mb-50 mb-sm-30">
<span class="owl-animate-chars" data-splitting="chars">AI For AI</span>
</h1>
<div class="local-scroll owl-animate-fadeInUp owl-delay-700 wch-unset">
<a href="#" class="btn btn-mod btn-border-w btn-large btn-round ms-1 me-1 mt-2 align-middle" data-btn-animate="y">AI App Generator</a>
<a href="#" class="btn btn-mod btn-w btn-large btn-round ms-1 me-1 mt-2 align-middle" data-btn-animate="y">A...</a>
</div>
</div>
</div>
</div>
<div class="local-scroll scroll-down-wrap-4 d-none d-sm-block wow fadeInUp" data-wow-offset="0">
<div class="full-wrapper text-end">
<a href="#news" class="scroll-down-4">
<i class="mi-arrow-down size-24"></i>
</a>
</div>
</div>
<div class="hs-status d-none d-sm-block wow fadeInUp" data-wow-offset="0">
Based in Seoul, South of Korea
</div>
</div>
</section> -->
<!-- End Slide Item -->
</div>
<!-- End Fullwidth Slider -->
<!-- Blog Section - 최근 뉴스 -->
<section class="page-section" id="news">
<div class="container position-relative">
<div class="row mb-60 mb-xs-30">
<div class="col-md-6">
<!-- <h2 class="section-caption mb-xs-10">Our Blog</h2> -->
<h3 class="section-title mb-0"><span class="wow charsAnimIn" data-splitting="chars">The latest news</span></h3>
</div>
<div class="col-md-5 offset-md-1 text-start text-md-end pt-40 pt-sm-20">
<!-- Decorative Dots -->
<div class="decoration-2 d-none d-md-block" data-rellax-y data-rellax-speed="0.7" data-rellax-percentage="-0.2">
<img src="images/decoration-2.svg" alt="" />
</div>
<!-- End Decorative Dots -->
<a href="contents/newsroom.html" class="link-hover-anim underline align-middle" data-link-animate="y"> Read more newsroom <i class="mi-arrow-right size-18"></i></a>
</div>
</div>
<!-- Newsroom Posts Grid -->
<div class="row mt-n50">
<!-- Post Item -->
<div class="post-prev col-md-6 col-lg-4 mt-50 wow fadeInLeft" data-wow-delay="0.1s">
<div class="post-prev-container">
<div class="post-prev-img-w">
<a href="https://www.dt.co.kr/article/12002844" target="_blank"><img src="images/blog/news-39.jpg" alt="유엔진솔루션즈, AI 기반 전주기 개발 자동화 플랫폼 ‘드림바이브’ 공개 뉴스 이미지" /></a>
</div>
<h4 class="post-prev-title"><a href="https://www.dt.co.kr/article/12002844" target="_blank">유엔진솔루션즈, AI 기반 전주기 개발 자동화 플랫폼 ‘드림바이브’ 공개</a></h4>
<div class="post-prev-text"></div>
<div class="post-prev-info clearfix">
<div class="float-start">
<img class="post-prev-author-img" width="30" height="30" src="images/blog/author/author-w.jpg" alt="유엔진 로고 작성자 이미지" />uEngine
</div>
<div class="float-end">July 09, 2025</div>
</div>
</div>
</div>
<!-- End Post Item -->
<!-- Post Item -->
<div class="post-prev col-md-6 col-lg-4 mt-50 wow fadeInLeft" data-wow-delay="0.1s">
<div class="post-prev-container">
<div class="post-prev-img">
<a href="https://www.edaily.co.kr/News/Read?newsId=03621126642203688&mediaCodeNo=257" target="_blank"><img src="images/blog/news-38.jpg" alt="2025 AI 컨버전스 포럼 뉴스 이미지" /></a>
</div>
<h4 class="post-prev-title"><a href="https://www.edaily.co.kr/News/Read?newsId=03621126642203688&mediaCodeNo=257" target="_blank">2025 AI 컨버전스 포럼</a></h4>
<div class="post-prev-text"></div>
<div class="post-prev-info clearfix">
<div class="float-start">
<img class="post-prev-author-img" width="30" height="30" src="images/blog/author/author-w.jpg" alt="유엔진 로고 작성자 이미지" />uEngine
</div>
<div class="float-end">June 20, 2025</div>
</div>
</div>
</div>
<!-- End Post Item -->
<!-- Post Item -->
<div class="post-prev col-md-6 col-lg-4 mt-50 wow fadeInLeft" data-wow-delay="0.1s">
<div class="post-prev-container">
<div class="post-prev-img-w">
<a href="https://www.nextdaily.co.kr/news/articleView.html?idxno=238000" target="_blank"><img src="images/blog/news-37.jpg" alt="유엔진, 대규모 레거시 코드 자동 변환 솔루션 'Legacy Modernizer' 출시 뉴스 이미지" /></a>
</div>
<h4 class="post-prev-title"><a href="https://www.nextdaily.co.kr/news/articleView.html?idxno=238000" target="_blank">유엔진, 대규모 레거시 코드 자동 변환 솔루션 'Legacy Modernizer' 출시</a></h4>
<div class="post-prev-text"></div>
<div class="post-prev-info clearfix">
<div class="float-start">
<img class="post-prev-author-img" width="30" height="30" src="images/blog/author/author-w.jpg" alt="유엔진 로고 작성자 이미지" />uEngine
</div>
<div class="float-end">May 13, 2025</div>
</div>
</div>
</div>
<!-- End Post Item -->
<!-- Post Item --> <!-- 영상 바로 재생 -->
<!-- <div class="post-prev col-md-6 col-lg-4 mt-50 wow fadeInLeft" data-wow-delay="0.2s">
<div class="post-prev-container">
<div class="post-prev-img">
<a class="popup-video" href="https://www.youtube.com/watch?v=uPXrIfmWnaE"><img src="images/blog/news-forum-play.jpg" alt="프로그래밍의 종말 - 생성형 AI 의 비즈니스 프로세스 자동화 온라인 컨퍼런스 강연" /></a>
<iframe class="vd-box" src="https://www.youtube.com/embed/uPXrIfmWnaE?si=E1e8rTHcrWrmmAGt" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<h4 class="post-prev-title"><a href="contents/newsroom/news1.html">[News] 프로그래밍의 종말 - 생성형 AI 의 비즈니스 프로세스 자동화</a></h4>
<div class="post-prev-text">
제2회 Agile AI Forum 온라인 컨퍼런스 _ 유엔진솔루션즈 장진영 대표
</div>
<div class="post-prev-info clearfix">
<div class="float-start">
<img class="post-prev-author-img" width="30" height="30" src="images/blog/author/author-w.jpg" alt="유엔진 로고 작성자 이미지" />uEngine
</div>
<div class="float-end">February 23, 2024</div>
</div>
</div>
</div> -->
<!-- End Post Item -->
</div>
<!-- End Blog Posts Grid -->
</div>
</section>
<!-- End Blog Section -->
<!-- Divider -->
<hr class="mt-0 mb-0"/>
<!-- End Divider -->
<!-- Blog Section - 최근 블로그 -->
<section class="page-section" id="news">
<div class="container position-relative">
<div class="row mb-60 mb-xs-30">
<div class="col-md-6">
<!-- <h2 class="section-caption mb-xs-10">Our Blog</h2> -->
<h3 class="section-title mb-0"><span class="wow charsAnimIn" data-splitting="chars">The latest Blog</span></h3>
</div>
<div class="col-md-5 offset-md-1 text-start text-md-end pt-40 pt-sm-20">
<!-- Decorative Dots -->
<div class="decoration-2 d-none d-md-block" data-rellax-y data-rellax-speed="0.7" data-rellax-percentage="-0.2">
<img src="images/decoration-2.svg" alt="" />
</div>
<!-- End Decorative Dots -->
<a href="contents/bloglist.html" class="link-hover-anim underline align-middle" data-link-animate="y"> Read more <i class="mi-arrow-right size-18"></i></a>
</div>
</div>
<!-- Blog Posts Grid -->
<div class="row mt-n50">
<!-- Post Item -->
<div class="post-prev col-md-6 col-lg-4 mt-50 wow fadeInLeft" data-wow-delay="0.1s">
<div class="post-prev-container">
<div class="post-prev-img">
<a href="contents/blog/gov24.html"><img src="images/blog/gov24-sum.png" alt="정부24 클라우드 네이티브 전환: 마이크로서비스 아키텍처로 공공서비스 혁신하기 블로그 이미지" /></a>
</div>
<h4 class="post-prev-title"><a href="contents/blog/gov24.html">정부24 클라우드 네이티브 전환: 마이크로서비스 아키텍처로 공공서비스 혁신하기</a></h4>
<div class="post-prev-text"></div>
<div class="post-prev-info clearfix">
<div class="float-start">
<img class="post-prev-author-img" width="30" height="30" src="images/blog/author/author-w.jpg" alt="유엔진 로고 작성자 이미지" />uEngine
</div>
<div class="float-end">December 17, 2025</div>
</div>
</div>
</div>
<!-- End Post Item -->
<!-- Post Item -->
<div class="post-prev col-md-6 col-lg-4 mt-50 wow fadeInLeft" data-wow-delay="0.1s">
<div class="post-prev-container">
<div class="post-prev-img">
<a href="contents/blog/orchestration.html"><img src="images/blog/orchestration-sum.png" alt="엔터프라이즈 OS: 전통적 BPM을 넘어선 차세대 진화 이미지" /></a>
</div>
<h4 class="post-prev-title"><a href="contents/blog/orchestration.html">엔터프라이즈 OS: 전통적 BPM을 넘어선 차세대 진화</a></h4>
<div class="post-prev-text"></div>
<div class="post-prev-info clearfix">
<div class="float-start">
<img class="post-prev-author-img" width="30" height="30" src="images/blog/author/author-w.jpg" alt="유엔진 로고 작성자 이미지" />uEngine
</div>
<div class="float-end">August 22, 2025</div>
</div>
</div>
</div>
<!-- End Post Item -->
<!-- Post Item -->
<div class="post-prev col-md-6 col-lg-4 mt-50 wow fadeInLeft" data-wow-delay="0.1s">
<div class="post-prev-container">
<div class="post-prev-img">
<a href="contents/blog/aimemory.html">
<img src="images/blog/aimemory-sum.png" alt="AI 에이전트의 기억력 혁명: 왜 메모리 관리가 성패를 좌우하는가 블로그 유엔진 로고 이미지" />
</a>
</div>
<h4 class="post-prev-title"><a href="contents/blog/aimemory.html">AI 에이전트의 기억력 혁명: 왜 메모리 관리가 성패를 좌우하는가</a></h4>
<div class="post-prev-text"></div>
<div class="post-prev-info clearfix">
<div class="float-start">
<img class="post-prev-author-img" width="30" height="30" src="images/blog/author/author-w.jpg" alt="유엔진 로고 작성자 이미지" />uEngine
</div>
<div class="float-end">July 10, 2025</div>
</div>
</div>
</div>
<!-- End Post Item -->
</div>
<!-- End Blog Posts Grid -->
</div>
</section>
<!-- End Blog Section -->
<!-- Divider -->
<hr class="mt-0 mb-0"/>
<!-- End Divider -->
<!-- Blog Section - 최근 웨비나 -->
<section class="page-section" id="news">
<div class="container position-relative">
<div class="row mb-60 mb-xs-30">
<div class="col-md-6">
<!-- <h2 class="section-caption mb-xs-10">Our Blog</h2> -->
<h3 class="section-title mb-0"><span class="wow charsAnimIn" data-splitting="chars">The latest Webinars</span></h3>
</div>
<div class="col-md-5 offset-md-1 text-start text-md-end pt-40 pt-sm-20">
<!-- Decorative Dots -->
<div class="decoration-2 d-none d-md-block" data-rellax-y data-rellax-speed="0.7" data-rellax-percentage="-0.2">
<img src="images/decoration-2.svg" alt="" />
</div>
<!-- End Decorative Dots -->
<a href="contents/webinars.html" class="link-hover-anim underline align-middle" data-link-animate="y"> Read more <i class="mi-arrow-right size-18"></i></a>
</div>
</div>
<!-- Blog Posts Grid -->
<div class="row mt-n50">
<!-- Post Item -->
<div class="post-prev col-md-6 col-lg-4 mt-50 wow fadeInLeft" data-wow-delay="0.3s">
<div class="post-prev-container">
<div class="post-prev-img-w">
<a href="https://www.youtube.com/playlist?list=PLEr96Fo5umW-HKspScD6f60UqPX4KlR6i" target="_blank"><img src="images/blog/post-prev-13.jpg" alt="2025, 9월 웨비나" /></a>
</div>
<h4 class="post-prev-title"><a href="https://www.youtube.com/playlist?list=PLEr96Fo5umW-HKspScD6f60UqPX4KlR6i" target="_blank">2025, 9월 웨비나</a></h4>
<div class="post-prev-text">
ProcessGPT 9월 웨비나 : 자율적 에이전트의 업무 처리 구현
</div>
<div class="post-prev-info clearfix">
<div class="float-start">
<img class="post-prev-author-img" width="30" height="30" src="images/blog/author/author-w.jpg" alt="유엔진 로고 작성자 이미지" />uEngine
</div>
<div class="float-end">September 26, 2025</div>
</div>
</div>
</div>
<!-- End Post Item -->
<!-- Post Item -->
<div class="post-prev col-md-6 col-lg-4 mt-50 wow fadeInLeft" data-wow-delay="0.3s">
<div class="post-prev-container">
<div class="post-prev-img-w">
<a href="https://www.youtube.com/playlist?list=PLEr96Fo5umW-tSTNoF_Xa2kMynkS-pZay" target="_blank"><img src="images/blog/post-prev-12.jpg" alt="2025, 7월 웨비나" /></a>
</div>
<h4 class="post-prev-title"><a href="https://www.youtube.com/playlist?list=PLEr96Fo5umW-tSTNoF_Xa2kMynkS-pZay" target="_blank">2025, 7월 웨비나</a></h4>
<div class="post-prev-text">
바이브 코딩 실전 웨비나 : AI 도구의 한계를 넘어 실서비스까지
</div>
<div class="post-prev-info clearfix">
<div class="float-start">
<img class="post-prev-author-img" width="30" height="30" src="images/blog/author/author-w.jpg" alt="유엔진 로고 작성자 이미지" />uEngine
</div>
<div class="float-end">July 15, 2025</div>
</div>