-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
954 lines (863 loc) · 54.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LowCodeRust - AI Tools for Rust Developers</title>
<style>
:root {
--rust-orange: #E84C23; /* Updated to match the crab orange */
--rust-dark: #2E2459;
--bg-light: #f9f9f9;
--text-dark: #333333;
--text-light: #f5f5f5;
--gradient-start: #E84C23;
--gradient-end: #FF8C42;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
background-color: var(--bg-light);
color: var(--text-dark);
line-height: 1.6;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}
header {
background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
color: var(--text-light);
padding: 2rem 0;
position: relative;
overflow: hidden;
}
header::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
opacity: 0.5;
}
.hero {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
padding: 6rem 0;
position: relative;
z-index: 1;
}
.hero h1 {
font-size: 4rem;
margin-bottom: 1rem;
color: var(--text-light);
text-shadow: 0 2px 4px rgba(0,0,0,0.2);
letter-spacing: 1px;
animation: fadeInDown 1s ease-out;
}
.hero p {
font-size: 1.4rem;
max-width: 800px;
margin-bottom: 2.5rem;
color: rgba(255, 255, 255, 0.9);
animation: fadeInUp 1s ease-out 0.3s both;
}
.cta-button {
display: inline-block;
background-color: white;
color: var(--rust-orange);
padding: 1rem 2rem;
font-size: 1.2rem;
font-weight: bold;
text-decoration: none;
border-radius: 50px;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
position: relative;
overflow: hidden;
animation: fadeInUp 1s ease-out 0.6s both;
z-index: 1;
}
.cta-button:hover {
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.cta-button::after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
transform: translateX(-100%);
transition: transform 0.6s;
z-index: -1;
}
.cta-button:hover::after {
transform: translateX(100%);
}
.features {
padding: 8rem 0;
background-color: white;
position: relative;
}
.features::before {
content: "";
position: absolute;
top: -50px;
left: 0;
width: 100%;
height: 100px;
background-color: white;
clip-path: polygon(0 0, 100% 50%, 100% 100%, 0% 100%);
}
.section-title {
text-align: center;
font-size: 3rem;
margin-bottom: 4rem;
color: var(--rust-dark);
position: relative;
padding-bottom: 1.5rem;
}
.section-title::after {
content: "";
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
border-radius: 2px;
}
.feature-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2.5rem;
}
.feature-card {
background-color: var(--bg-light);
border-radius: 16px;
padding: 2.5rem;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
transition: all 0.4s ease;
position: relative;
overflow: hidden;
z-index: 1;
}
.feature-card::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(232, 76, 35, 0.1) 0%, rgba(255, 140, 66, 0.1) 100%);
z-index: -1;
opacity: 0;
transition: opacity 0.4s ease;
}
.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.feature-card:hover::before {
opacity: 1;
}
.feature-icon {
font-size: 3rem;
color: var(--rust-orange);
margin-bottom: 1.5rem;
background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
-webkit-background-clip: text;
color: transparent;
display: inline-block;
}
.feature-title {
font-size: 1.8rem;
margin-bottom: 1rem;
color: var(--rust-dark);
}
.feature-description {
font-size: 1.1rem;
color: #666;
line-height: 1.7;
}
.testimonials {
padding: 8rem 0;
background: linear-gradient(135deg, var(--rust-dark) 0%, #1a1333 100%);
color: var(--text-light);
position: relative;
}
.testimonials::before {
content: "";
position: absolute;
top: -50px;
left: 0;
width: 100%;
height: 100px;
background-color: white;
clip-path: polygon(0 0, 100% 0, 100% 100%, 0 50%);
}
.testimonial-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 3rem;
}
.testimonial-card {
background-color: rgba(255, 255, 255, 0.05);
border-radius: 16px;
padding: 2.5rem;
position: relative;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.testimonial-card::before {
content: '"';
position: absolute;
top: 20px;
left: 20px;
font-size: 6rem;
color: rgba(255, 255, 255, 0.1);
font-family: Georgia, serif;
line-height: 1;
}
.testimonial-text {
font-style: italic;
margin-bottom: 1.5rem;
position: relative;
z-index: 1;
font-size: 1.1rem;
line-height: 1.8;
}
.testimonial-author {
font-weight: bold;
display: flex;
align-items: center;
}
.testimonial-author::before {
content: "";
display: inline-block;
width: 20px;
height: 2px;
background-color: var(--rust-orange);
margin-right: 10px;
}
.tool-section {
padding: 8rem 0;
}
@keyframes fadeInDown {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@media (max-width: 768px) {
.hero h1 {
font-size: 2.8rem;
}
.hero p {
font-size: 1.2rem;
}
.section-title {
font-size: 2.5rem;
}
.pricing-card {
padding: 2rem 1.5rem;
}
}
@media (max-width: 480px) {
.hero h1 {
font-size: 2.2rem;
}
.hero p {
font-size: 1rem;
}
.cta-button {
padding: 0.8rem 1.5rem;
font-size: 1rem;
}
.section-title {
font-size: 2rem;
}
}
</style>
</head>
<body>
<header>
<div class="container">
<div class="hero">
<h1>LowCodeRust</h1>
<p>Supercharge your Rust development with our suite of AI-powered tools designed specifically for Rust developers.</p>
<a href="#features" class="cta-button">Explore Our Tools <span>→</span></a>
</div>
</div>
</header>
<section id="features" class="features">
<div class="container">
<h2 class="section-title">Our AI Tools</h2>
<div class="feature-grid">
<div class="feature-card">
<div class="feature-icon">💬</div>
<h3 class="feature-title">Rust Learning Assistant</h3>
<p class="feature-description">An intelligent assistant specifically designed to help you learn Rust programming. Get answers to your questions, code explanations, and personalized learning paths.</p>
<a href="https://llamaedge.github.io/chatbot-ui/index?api_url=https://rustcoder.gaia.domains" class="cta-button" style="margin-top: 1.5rem; font-size: 0.9rem; padding: 0.6rem 1.2rem;">Learn More</a>
</div>
<div class="feature-card">
<div class="feature-icon">⚙️</div>
<h3 class="feature-title">Rust Code Generator</h3>
<p class="feature-description">Generate production-ready Rust code from natural language descriptions. Save time and focus on solving complex problems.</p>
<a href="https://github.com/WasmEdge/WasmEdge/issues/4038" class="cta-button" style="margin-top: 1.5rem; font-size: 0.9rem; padding: 0.6rem 1.2rem;">Learn More</a>
</div>
<div class="feature-card">
<div class="feature-icon">🔄</div>
<h3 class="feature-title">Python to Rust Translator</h3>
<p class="feature-description">Easily convert your Python code to Rust. Replace slow Python implementations with high-performance Rust while maintaining functionality.</p>
<a href="https://github.com/WasmEdge/WasmEdge/issues/4038" class="cta-button" style="margin-top: 1.5rem; font-size: 0.9rem; padding: 0.6rem 1.2rem;">Learn More</a>
</div>
<div class="feature-card">
<div class="feature-icon">🔍</div>
<h3 class="feature-title">PR Reviewer</h3>
<p class="feature-description">Expert code review for your Rust pull requests with human oversight. Designed for team leaders to maintain code quality with the AI model of your choice.</p>
<a href="https://code.flows.network/webhook/IdDl5jrutZEAguuMPsS5" class="cta-button" style="margin-top: 1.5rem; font-size: 0.9rem; padding: 0.6rem 1.2rem;">Learn More</a>
</div>
<div class="feature-card">
<div class="feature-icon">📚</div>
<h3 class="feature-title">IDE Integration</h3>
<p class="feature-description">Comprehensive guides on integrating our tools with popular IDEs like Zed, Cursor, VS Code, and more. Coming soon: MCP Server for enhanced capabilities.</p>
<a href="#ide-integration" class="cta-button" style="margin-top: 1.5rem; font-size: 0.9rem; padding: 0.6rem 1.2rem;">Learn More</a>
</div>
<!-- New feature card for "Explain this PR to me" -->
<div class="feature-card">
<div class="feature-icon">🤝</div>
<h3 class="feature-title">Explain this PR to me</h3>
<p class="feature-description">Translate complex Rust pull requests into clear, business-focused explanations for product managers and non-technical stakeholders.</p>
<a href="https://code.flows.network/webhook/IdDl5jrutZEAguuMPsS5" class="cta-button" style="margin-top: 1.5rem; font-size: 0.9rem; padding: 0.6rem 1.2rem;">Learn More</a>
</div>
</div>
</div>
</section>
<!-- Rust Learning Assistant Section -->
<section id="rust-assistant" class="tool-section" style="padding: 8rem 0; background-color: var(--bg-light);">
<div class="container">
<div style="display: flex; flex-wrap: wrap; align-items: center; gap: 3rem;">
<div style="flex: 1; min-width: 300px;">
<h2 style="color: var(--rust-dark); font-size: 2.5rem; margin-bottom: 1.5rem; position: relative; padding-bottom: 1rem;">
Rust Learning Assistant
<span style="position: absolute; bottom: 0; left: 0; width: 60px; height: 3px; background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));"></span>
</h2>
<p style="font-size: 1.1rem; margin-bottom: 1.5rem; color: #444; line-height: 1.7;">Your personal Rust programming mentor available 24/7. The Rust Learning Assistant is specifically designed to accelerate your Rust learning journey through interactive conversations and personalized guidance.</p>
<div style="margin: 2rem 0;">
<h3 style="color: var(--rust-dark); font-size: 1.3rem; margin-bottom: 1rem;">Key Features</h3>
<ul style="list-style-position: inside; color: #555;">
<li style="margin-bottom: 0.7rem; position: relative; padding-left: 1.5rem;">
<span style="position: absolute; left: 0; color: var(--rust-orange);">•</span>
<strong>Concept Explanations</strong> - Clear breakdowns of Rust's unique concepts like ownership, borrowing, and lifetimes
</li>
<li style="margin-bottom: 0.7rem; position: relative; padding-left: 1.5rem;">
<span style="position: absolute; left: 0; color: var(--rust-orange);">•</span>
<strong>Code Analysis</strong> - Paste your code and get detailed explanations and improvement suggestions
</li>
<li style="margin-bottom: 0.7rem; position: relative; padding-left: 1.5rem;">
<span style="position: absolute; left: 0; color: var(--rust-orange);">•</span>
<strong>Learning Paths</strong> - Personalized recommendations based on your experience level and goals
</li>
<li style="margin-bottom: 0.7rem; position: relative; padding-left: 1.5rem;">
<span style="position: absolute; left: 0; color: var(--rust-orange);">•</span>
<strong>Error Assistance</strong> - Help understanding and fixing common Rust compiler errors
</li>
</ul>
</div>
<a href="https://llamaedge.github.io/chatbot-ui/index?api_url=https://rustcoder.gaia.domains" class="cta-button" style="font-size: 1.1rem;">Try Rust Assistant Now</a>
</div>
<div style="flex: 1; min-width: 300px; background-color: #fff; border-radius: 16px; padding: 2rem; box-shadow: 0 10px 30px rgba(0,0,0,0.08); transition: transform 0.3s ease;">
<div style="border-bottom: 1px solid #eee; padding-bottom: 1rem; margin-bottom: 1rem;">
<div style="color: var(--rust-dark); font-weight: bold;">Rust Learning Assistant</div>
</div>
<div style="background-color: #f9f9f9; border-radius: 8px; padding: 1rem; margin-bottom: 1rem;">
<p style="margin: 0; color: #555;">How do I implement a generic function in Rust?</p>
</div>
<div style="background: linear-gradient(135deg, var(--rust-dark) 0%, #1a1333 100%); color: white; border-radius: 8px; padding: 1rem; margin-bottom: 1rem;">
<p style="margin: 0 0 0.5rem 0;">In Rust, you can create a generic function using angle brackets:</p>
<pre style="background-color: rgba(0,0,0,0.3); padding: 0.5rem; border-radius: 4px; overflow-x: auto; font-size: 0.9rem;"><code>fn max<T: PartialOrd>(a: T, b: T) -> T {
if a > b { a } else { b }
}</code></pre>
<p style="margin: 0.5rem 0 0 0;">This simple function works with any type that can be compared.</p>
</div>
<div style="background-color: #f9f9f9; border-radius: 8px; padding: 1rem;">
<p style="margin: 0; color: #555;">Can you show how to use it with different types?</p>
</div>
</div>
</div>
</div>
</section>
<!-- Code Generator Section -->
<section id="code-generator" class="tool-section" style="padding: 8rem 0; background-color: white;">
<div class="container">
<div style="display: flex; flex-wrap: wrap; align-items: center; gap: 3rem;">
<div style="flex: 1; min-width: 300px;">
<h2 style="color: var(--rust-dark); font-size: 2.5rem; margin-bottom: 1.5rem; position: relative; padding-bottom: 1rem;">
Rust Code Generator
<span style="position: absolute; bottom: 0; left: 0; width: 60px; height: 3px; background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));"></span>
</h2>
<p style="font-size: 1.1rem; margin-bottom: 1.5rem; color: #444; line-height: 1.7;">Transform natural language descriptions into production-ready Rust code. Our AI-powered code generator helps you focus on solving problems rather than writing boilerplate code.</p>
<div style="margin: 2rem 0;">
<h3 style="color: var(--rust-dark); font-size: 1.3rem; margin-bottom: 1rem;">Key Features</h3>
<ul style="list-style: none; color: #555;">
<li style="margin-bottom: 0.7rem; position: relative; padding-left: 1.5rem;">
<span style="position: absolute; left: 0; color: var(--rust-orange);">•</span>
<strong>Natural Language Input</strong> - Describe what you need and get functional Rust code
</li>
<li style="margin-bottom: 0.7rem; position: relative; padding-left: 1.5rem;">
<span style="position: absolute; left: 0; color: var(--rust-orange);">•</span>
<strong>Smart Boilerplate</strong> - Generate repetitive structures like traits, implementations, and tests
</li>
<li style="margin-bottom: 0.7rem; position: relative; padding-left: 1.5rem;">
<span style="position: absolute; left: 0; color: var(--rust-orange);">•</span>
<strong>Idiomatic Rust</strong> - Output follows Rust best practices and community conventions
</li>
<li style="margin-bottom: 0.7rem; position: relative; padding-left: 1.5rem;">
<span style="position: absolute; left: 0; color: var(--rust-orange);">•</span>
<strong>Comment Documentation</strong> - Includes helpful documentation comments explaining the generated code
</li>
<li style="margin-bottom: 0.7rem; position: relative; padding-left: 1.5rem;">
<span style="position: absolute; left: 0; color: var(--rust-orange);">•</span>
<strong>Project Context Awareness</strong> - Takes into account your existing codebase for consistent output
</li>
</ul>
</div>
<a href="https://github.com/WasmEdge/WasmEdge/issues/4038" class="cta-button" style="font-size: 1.1rem;">See Progress on GitHub</a>
</div>
<div style="flex: 1; min-width: 300px; background-color: #fff; border-radius: 16px; padding: 2rem; box-shadow: 0 10px 30px rgba(0,0,0,0.08); transition: transform 0.3s ease; overflow: auto; max-height: 600px;">
<div style="margin-bottom: 1.5rem;">
<h3 style="color: var(--rust-dark); font-size: 1.2rem; margin-bottom: 0.5rem; display: flex; align-items: center;">
<span style="display: inline-block; width: 10px; height: 10px; background-color: #FF5F56; border-radius: 50%; margin-right: 5px;"></span>
<span style="display: inline-block; width: 10px; height: 10px; background-color: #FFBD2E; border-radius: 50%; margin-right: 5px;"></span>
<span style="display: inline-block; width: 10px; height: 10px; background-color: #27C93F; border-radius: 50%; margin-right: 10px;"></span>
Input
</h3>
<div style="background-color: #f5f5f5; border-radius: 8px; padding: 1rem; color: #333; font-family: monospace;">
Create a web server that parses a JSON request, and respond with the data in CSV format
</div>
</div>
<div>
<h3 style="color: var(--rust-dark); font-size: 1.2rem; margin-bottom: 0.5rem; display: flex; align-items: center;">
<span style="display: inline-block; width: 10px; height: 10px; background-color: #FF5F56; border-radius: 50%; margin-right: 5px;"></span>
<span style="display: inline-block; width: 10px; height: 10px; background-color: #FFBD2E; border-radius: 50%; margin-right: 5px;"></span>
<span style="display: inline-block; width: 10px; height: 10px; background-color: #27C93F; border-radius: 50%; margin-right: 10px;"></span>
Generated Project Structure
</h3>
<pre style="background-color: #f5f5f5; border-radius: 8px; padding: 1rem; overflow-x: auto; font-size: 0.9rem; line-height: 1.4;"><code>json_to_csv_api/
├── Cargo.toml
├── src/
│ ├── main.rs
│ ├── handlers.rs
│ └── models.rs
├── .gitignore
└── README.md</code></pre>
<h3 style="color: var(--rust-dark); font-size: 1.2rem; margin: 1rem 0 0.5rem; display: flex; align-items: center;">
<span style="display: inline-block; width: 10px; height: 10px; background-color: #FF5F56; border-radius: 50%; margin-right: 5px;"></span>
<span style="display: inline-block; width: 10px; height: 10px; background-color: #FFBD2E; border-radius: 50%; margin-right: 5px;"></span>
<span style="display: inline-block; width: 10px; height: 10px; background-color: #27C93F; border-radius: 50%; margin-right: 10px;"></span>
Cargo.toml
</h3>
<pre style="background-color: #f5f5f5; border-radius: 8px; padding: 1rem; overflow-x: auto; font-size: 0.9rem; line-height: 1.4;"><code>[package]
name = "json_to_csv_api"
version = "0.1.0"
edition = "2021"
authors = ["Your Name <[email protected]>"]
description = "A web server that converts JSON requests to CSV responses"
license = "MIT"
[dependencies]
actix-web = "4.4.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
csv = "1.2"
env_logger = "0.10"
log = "0.4"
thiserror = "1.0"</code></pre>
<h3 style="color: var(--rust-dark); font-size: 1.2rem; margin: 1rem 0 0.5rem; display: flex; align-items: center;">
<span style="display: inline-block; width: 10px; height: 10px; background-color: #FF5F56; border-radius: 50%; margin-right: 5px;"></span>
<span style="display: inline-block; width: 10px; height: 10px; background-color: #FFBD2E; border-radius: 50%; margin-right: 5px;"></span>
<span style="display: inline-block; width: 10px; height: 10px; background-color: #27C93F; border-radius: 50%; margin-right: 10px;"></span>
src/models.rs
</h3>
<pre style="background-color: #f5f5f5; border-radius: 8px; padding: 1rem; overflow-x: auto; font-size: 0.9rem; line-height: 1.4;"><code>use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use thiserror::Error;
/// Generic record structure that can handle any JSON data with string keys
#[derive(Debug, Serialize, Deserialize)]
pub struct Record {
#[serde(flatten)]
pub fields: HashMap<String, serde_json::Value>,
}
/// Custom error types for our application
#[derive(Error, Debug)]
pub enum AppError {
#[error("CSV generation error: {0}")]
CsvError(#[from] csv::Error),
#[error("IO error: {0}")]
IoError(#[from] std::io::Error),
#[error("UTF-8 conversion error: {0}")]
Utf8Error(#[from] std::string::FromUtf8Error),
}</code></pre>
</div>
</div>
</div>
</div>
</section>
<!-- Python to Rust Translator Section -->
<section id="py-to-rust" class="tool-section" style="padding: 8rem 0; background-color: var(--bg-light);">
<div class="container">
<div style="display: flex; flex-wrap: wrap; align-items: center; gap: 3rem;">
<div style="flex: 1; min-width: 300px; order: 2;">
<h2 style="color: var(--rust-dark); font-size: 2.5rem; margin-bottom: 1.5rem; position: relative; padding-bottom: 1rem;">
Python to Rust Translator
<span style="position: absolute; bottom: 0; left: 0; width: 60px; height: 3px; background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));"></span>
</h2>
<p style="font-size: 1.1rem; margin-bottom: 1.5rem; color: #444; line-height: 1.7;">Replace slow Python implementations with high-performance Rust code. Our translator helps you migrate performance-critical sections of your Python codebase to Rust while maintaining functionality.</p>
<div style="display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1rem;">
<div style="background-color: rgba(232, 76, 35, 0.1); color: var(--rust-dark); padding: 0.5rem 1rem; border-radius: 4px; display: inline-flex; align-items: center; font-weight: 500;">
<span style="display: inline-block; width: 10px; height: 10px; background-color: var(--rust-orange); border-radius: 50%; margin-right: 8px;"></span>
Coming Soon
</div>
</div>
<div style="display: flex; gap: 1rem; margin-top: 1.5rem;">
<a href="https://github.com/WasmEdge/WasmEdge/issues/4038" class="cta-button" style="font-size: 1.1rem; display: flex; align-items: center;">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" style="margin-right: 8px;">
<path d="M19 13v6a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h6"></path>
<path d="M16 2v4h4"></path>
<path d="M16 2l4 4"></path>
</svg>
Join Waitlist
</a>
<a href="https://github.com/WasmEdge/WasmEdge/issues/4038" class="cta-button" style="font-size: 1.1rem; display: flex; align-items: center; background-color: transparent; border: 2px solid var(--rust-orange); color: var(--rust-orange);">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" style="margin-right: 8px;">
<path d="M14 9l6 6-6 6"></path>
<path d="M4 4v7a4 4 0 0 0 4 4h11"></path>
</svg>
Learn More
</a>
</div>
</div>
<div style="flex: 1; min-width: 300px; order: 1; transition: transform 0.3s ease;">
<div style="background-color: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.08);">
<div style="background-color: #f0f0f0; border-radius: 8px 8px 0 0; padding: 0.75rem; border-bottom: 1px solid #ddd;">
<div style="font-weight: bold; color: #333; display: flex; align-items: center; justify-content: center;">
<span style="display: inline-block; width: 10px; height: 10px; background-color: #FF5F56; border-radius: 50%; margin-right: 5px;"></span>
<span style="display: inline-block; width: 10px; height: 10px; background-color: #FFBD2E; border-radius: 50%; margin-right: 5px;"></span>
<span style="display: inline-block; width: 10px; height: 10px; background-color: #27C93F; border-radius: 50%; margin-right: 10px;"></span>
Python to Rust Translator
</div>
</div>
<div style="padding: 1.5rem; text-align: center;">
<img src="/api/placeholder/300/200" alt="Python to Rust Translation Concept" style="max-width: 80%; margin-bottom: 1.5rem; border-radius: 8px;" />
<h3 style="color: var(--rust-dark); font-size: 1.5rem; margin-bottom: 1rem;">Replace Python with Rust</h3>
<p style="color: #555; line-height: 1.7; margin-bottom: 1.5rem;">Our Python to Rust Translator will help you convert slow Python code to blazing fast Rust implementations, with seamless integration back into your Python codebase.</p>
<div style="display: inline-block; background-color: rgba(232, 76, 35, 0.1); color: var(--rust-dark); padding: 0.8rem 1.5rem; border-radius: 50px; font-weight: 500;">
Stay Tuned for Updates!
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- PR Reviewer Section -->
<section id="pr-reviewer" class="tool-section" style="padding: 8rem 0; background-color: white;">
<div class="container">
<div style="display: flex; flex-wrap: wrap; align-items: center; gap: 3rem;">
<div style="flex: 1; min-width: 300px;">
<h2 style="color: var(--rust-dark); font-size: 2.5rem; margin-bottom: 1.5rem; position: relative; padding-bottom: 1rem;">
PR Reviewer
<span style="position: absolute; bottom: 0; left: 0; width: 60px; height: 3px; background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));"></span>
</h2>
<p style="font-size: 1.1rem; margin-bottom: 1.5rem; color: #444; line-height: 1.7;">Expert Rust code review for team leaders and developers. Our PR Reviewer assists with identifying issues, enforcing best practices, and improving code quality, all with human oversight and control.</p>
<div style="margin: 2rem 0;">
<h3 style="color: var(--rust-dark); font-size: 1.3rem; margin-bottom: 1rem;">Key Features</h3>
<ul style="list-style-position: inside; color: #555;">
<li style="margin-bottom: 0.7rem; position: relative; padding-left: 1.5rem;">
<span style="position: absolute; left: 0; color: var(--rust-orange);">•</span>
<strong>Human-in-the-Loop</strong> - Provides insights while keeping you in control of the review process
</li>
<li style="margin-bottom: 0.7rem; position: relative; padding-left: 1.5rem;">
<span style="position: absolute; left: 0; color: var(--rust-orange);">•</span>
<strong>Memory Safety Checks</strong> - Identifies potential ownership, borrowing, and concurrency issues
</li>
<li style="margin-bottom: 0.7rem; position: relative; padding-left: 1.5rem;">
<span style="position: absolute; left: 0; color: var(--rust-orange);">•</span>
<strong>Model Flexibility</strong> - Choose any AI model that suits your team's needs and security requirements
</li>
<li style="margin-bottom: 0.7rem; position: relative; padding-left: 1.5rem;">
<span style="position: absolute; left: 0; color: var(--rust-orange);">•</span>
<strong>Team Leader Focus</strong> - Designed specifically to help team leaders maintain code quality standards
</li>
<li style="margin-bottom: 0.7rem; position: relative; padding-left: 1.5rem;">
<span style="position: absolute; left: 0; color: var(--rust-orange);">•</span>
<strong>Integration Options</strong> - Works with GitHub, GitLab, and other version control platforms
</li>
</ul>
</div>
<a href="https://code.flows.network/webhook/IdDl5jrutZEAguuMPsS5" class="cta-button" style="font-size: 1.1rem;">Try PR Reviewer</a>
</div>
<div style="flex: 1; min-width: 300px; background-color: #f5f5f5; border-radius: 16px; padding: 1.5rem; box-shadow: 0 10px 30px rgba(0,0,0,0.08); transition: transform 0.3s ease;">
<div style="background-color: #f0f0f0; border-radius: 8px 8px 0 0; padding: 0.75rem; border-bottom: 1px solid #ddd;">
<div style="font-weight: bold; color: #333; display: flex; align-items: center;">
<span style="display: inline-block; width: 10px; height: 10px; background-color: #FF5F56; border-radius: 50%; margin-right: 5px;"></span>
<span style="display: inline-block; width: 10px; height: 10px; background-color: #FFBD2E; border-radius: 50%; margin-right: 5px;"></span>
<span style="display: inline-block; width: 10px; height: 10px; background-color: #27C93F; border-radius: 50%; margin-right: 10px;"></span>
PR #142: Add user authentication module
</div>
</div>
<div style="background-color: white; padding: 1rem; border-radius: 0 0 8px 8px;">
<div style="margin-bottom: 1.5rem;">
<div style="color: var(--rust-dark); font-weight: bold; margin-bottom: 0.5rem;">LowCodeRust PR Reviewer</div>
<div style="padding: 0.75rem; background-color: #f9f7ff; border-left: 3px solid var(--rust-orange); margin-top: 0.5rem;">
<p style="margin: 0 0 0.5rem 0; font-weight: bold;">🔍 Review Summary</p>
<p style="margin: 0 0 0.5rem 0; font-size: 0.9rem;">Found 2 potential issues and 3 suggestions for improvement.</p>
</div>
</div>
<div style="margin-bottom: 1rem;">
<div style="display: flex; align-items: center; margin-bottom: 0.5rem;">
<span style="background-color: #ffeef0; color: #d73a49; font-size: 0.8rem; padding: 0.25rem 0.5rem; border-radius: 3px; margin-right: 0.5rem;">Issue</span>
<span style="font-size: 0.9rem; font-weight: bold;">Potential memory leak in token manager</span>
</div>
<pre style="background-color: #f6f8fa; padding: 0.75rem; border-radius: 4px; overflow-x: auto; font-size: 0.85rem; margin: 0.5rem 0;"><code>impl TokenManager {
fn generate_token(&mut self) -> Token {
let raw_token = self.rng.gen::<[u8; 32]>();
// Token not being properly cleaned up when expired
self.tokens.push(Token::new(raw_token));
self.tokens.last().unwrap().clone()
}
}</code></pre>
<p style="margin: 0.5rem 0; font-size: 0.9rem; color: #555;">Consider implementing a cleanup mechanism or using a data structure with automatic expiration.</p>
</div>
<div style="margin-bottom: 1rem;">
<div style="display: flex; align-items: center; margin-bottom: 0.5rem;">
<span style="background-color: #e6ffed; color: #22863a; font-size: 0.8rem; padding: 0.25rem 0.5rem; border-radius: 3px; margin-right: 0.5rem;">Suggestion</span>
<span style="font-size: 0.9rem; font-weight: bold;">Use Result instead of unwrap()</span>
</div>
<p style="margin: 0.5rem 0; font-size: 0.9rem; color: #555;">Replace error-prone unwrap() calls with proper error handling using the Result type.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- New section for "Explain this PR to me" -->
<section id="explain-pr" class="tool-section" style="padding: 8rem 0; background-color: var(--bg-light);">
<div class="container">
<div style="display: flex; flex-wrap: wrap; align-items: center; gap: 3rem;">
<div style="flex: 1; min-width: 300px;">
<h2 style="color: var(--rust-dark); font-size: 2.5rem; margin-bottom: 1.5rem; position: relative; padding-bottom: 1rem;">
Explain this PR to me
<span style="position: absolute; bottom: 0; left: 0; width: 60px; height: 3px; background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));"></span>
</h2>
<p style="font-size: 1.1rem; margin-bottom: 1.5rem; color: #444; line-height: 1.7;">Bridge the gap between technical and non-technical team members. Our PR Explainer translates complex Rust code changes into business-focused summaries that everyone can understand, keeping your entire team aligned.</p>
<div style="margin: 2rem 0;">
<h3 style="color: var(--rust-dark); font-size: 1.3rem; margin-bottom: 1rem;">Key Features</h3>
<ul style="list-style-position: inside; color: #555;">
<li style="margin-bottom: 0.7rem; position: relative; padding-left: 1.5rem;">
<span style="position: absolute; left: 0; color: var(--rust-orange);">•</span>
<strong>Business Impact Analysis</strong> - Understand how code changes affect product features and business goals
</li>
<li style="margin-bottom: 0.7rem; position: relative; padding-left: 1.5rem;">
<span style="position: absolute; left: 0; color: var(--rust-orange);">•</span>
<strong>Jargon Translation</strong> - Technical terms explained in plain language for non-developers
</li>
<li style="margin-bottom: 0.7rem; position: relative; padding-left: 1.5rem;">
<span style="position: absolute; left: 0; color: var(--rust-orange);">•</span>
<strong>Visual Summaries</strong> - Diagrams and visual aids to illustrate complex changes
</li>
<li style="margin-bottom: 0.7rem; position: relative; padding-left: 1.5rem;">
<span style="position: absolute; left: 0; color: var(--rust-orange);">•</span>
<strong>Risk Assessment</strong> - Clear explanations of potential risks or impacts on user experience
</li>
<li style="margin-bottom: 0.7rem; position: relative; padding-left: 1.5rem;">
<span style="position: absolute; left: 0; color: var(--rust-orange);">•</span>
<strong>Customized Explanations</strong> - Tailor explanations based on the recipient's role and technical background
</li>
</ul>
</div>
<a href="https://code.flows.network/webhook/IdDl5jrutZEAguuMPsS5" class="cta-button" style="font-size: 1.1rem;">Try PR Explainer</a>
</div>
<div style="flex: 1; min-width: 300px; background-color: #fff; border-radius: 16px; padding: 1.5rem; box-shadow: 0 10px 30px rgba(0,0,0,0.08); transition: transform 0.3s ease;">
<div style="background-color: #f0f0f0; border-radius: 8px 8px 0 0; padding: 0.75rem; border-bottom: 1px solid #ddd;">
<div style="font-weight: bold; color: #333; display: flex; align-items: center;">
<span style="display: inline-block; width: 10px; height: 10px; background-color: #FF5F56; border-radius: 50%; margin-right: 5px;"></span>
<span style="display: inline-block; width: 10px; height: 10px; background-color: #FFBD2E; border-radius: 50%; margin-right: 5px;"></span>
<span style="display: inline-block; width: 10px; height: 10px; background-color: #27C93F; border-radius: 50%; margin-right: 10px;"></span>
PR #156: Implement multi-factor authentication
</div>
</div>
<div style="background-color: white; padding: 1rem; border-radius: 0 0 8px 8px;">
<div style="margin-bottom: 1.5rem;">
<div style="color: var(--rust-dark); font-weight: bold; margin-bottom: 0.5rem;">LowCodeRust PR Explainer</div>
<div style="padding: 0.75rem; background-color: #f9f7ff; border-left: 3px solid var(--rust-orange); margin-top: 0.5rem;">
<p style="margin: 0 0 0.5rem 0; font-weight: bold;">📝 Business Summary</p>
<p style="margin: 0 0 0.5rem 0; font-size: 0.9rem;">This PR adds multi-factor authentication to protect user accounts, meeting the security requirements for enterprise customers.</p>
</div>
</div>
<div style="margin-bottom: 1rem;">
<div style="display: flex; align-items: center; margin-bottom: 0.5rem;">
<span style="background-color: #e1f5fe; color: #0288d1; font-size: 0.8rem; padding: 0.25rem 0.5rem; border-radius: 3px; margin-right: 0.5rem;">Product Impact</span>
<span style="font-size: 0.9rem; font-weight: bold;">New User Flow</span>
</div>
<p style="margin: 0.5rem 0; font-size: 0.9rem; color: #555;">Users will now see an additional verification step during login. This affects the onboarding flow in the following ways:</p>
<ul style="font-size: 0.9rem; color: #555; margin: 0.5rem 0 0 1.5rem;">
<li>First-time users will be prompted to set up 2FA during registration</li>
<li>Existing users will be prompted to enable 2FA on next login</li>
<li>Recovery options are provided for users who lose access to verification devices</li>
</ul>
</div>
<div style="margin-bottom: 1rem;">
<div style="display: flex; align-items: center; margin-bottom: 0.5rem;">
<span style="background-color: #f1f8e9; color: #689f38; font-size: 0.8rem; padding: 0.25rem 0.5rem; border-radius: 3px; margin-right: 0.5rem;">Timeline</span>
<span style="font-size: 0.9rem; font-weight: bold;">Ready for Q2 Launch</span>
</div>
<p style="margin: 0.5rem 0; font-size: 0.9rem; color: #555;">This feature is complete and fully tested. It can be included in the Q2 release as planned, with no impact on other roadmap items.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- IDE Integration Tutorials Section -->
<section id="ide-integration" class="tool-section" style="padding: 8rem 0; background-color: var(--bg-light);">
<div class="container">
<h2 style="color: var(--rust-dark); font-size: 2.5rem; margin-bottom: 1.5rem; position: relative; padding-bottom: 1rem; text-align: center;">
IDE Integration
<span style="position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));"></span>
</h2>
<p style="font-size: 1.1rem; margin-bottom: 2.5rem; color: #444; line-height: 1.7; text-align: center; max-width: 800px; margin-left: auto; margin-right: auto;">
Get started quickly with our tools by integrating them into your favorite code editors.
Follow our guides to set up your Rust development environment with AI assistance in minutes.
</p>
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; margin-top: 3rem;">
<!-- Zed Integration Tutorial -->
<div style="background-color: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.08); transition: transform 0.3s ease;">
<div style="aspect-ratio: 16/9; background-color: #000; display: flex; justify-content: center; align-items: center; position: relative;">
<!-- Video thumbnail with play button (would be replaced with actual video embed) -->
<div style="position: absolute; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; cursor: pointer;">
<img src="/api/placeholder/400/225" alt="Zed Integration Thumbnail" style="width: 100%; height: 100%; object-fit: cover; opacity: 0.7;" />
<div style="position: absolute; width: 80px; height: 80px; background-color: rgba(232, 76, 35, 0.9); border-radius: 50%; display: flex; justify-content: center; align-items: center;">
<div style="width: 0; height: 0; border-top: 20px solid transparent; border-bottom: 20px solid transparent; border-left: 30px solid white; margin-left: 8px;"></div>
</div>
</div>
</div>
<div style="padding: 2rem;">
<h3 style="color: var(--rust-dark); font-size: 1.5rem; margin-bottom: 1rem;">LowCodeRust with Zed Editor</h3>
<p style="font-size: 1rem; color: #555; line-height: 1.6; margin-bottom: 1.5rem;">
Learn how to integrate LowCodeRust tools with Zed, the high-performance code editor designed for speed and collaboration.
</p>
<a href="https://docs.gaianet.ai/agent-integrations/zed" class="cta-button" style="display: inline-block; margin-top: 1rem; font-size: 0.9rem; padding: 0.6rem 1.2rem;">Watch Tutorial</a>
</div>
</div>
<!-- Cursor Integration Tutorial -->
<div style="background-color: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.08); transition: transform 0.3s ease;">
<div style="aspect-ratio: 16/9; background-color: #000; display: flex; justify-content: center; align-items: center; position: relative;">
<!-- Video thumbnail with play button (would be replaced with actual video embed) -->
<div style="position: absolute; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; cursor: pointer;">
<img src="/api/placeholder/400/225" alt="Cursor Integration Thumbnail" style="width: 100%; height: 100%; object-fit: cover; opacity: 0.7;" />
<div style="position: absolute; width: 80px; height: 80px; background-color: rgba(232, 76, 35, 0.9); border-radius: 50%; display: flex; justify-content: center; align-items: center;">
<div style="width: 0; height: 0; border-top: 20px solid transparent; border-bottom: 20px solid transparent; border-left: 30px solid white; margin-left: 8px;"></div>
</div>
</div>
</div>
<div style="padding: 2rem;">
<h3 style="color: var(--rust-dark); font-size: 1.5rem; margin-bottom: 1rem;">LowCodeRust with Cursor</h3>
<p style="font-size: 1rem; color: #555; line-height: 1.6; margin-bottom: 1.5rem;">
Discover how to set up LowCodeRust in Cursor, the AI-first code editor that enhances your Rust development experience with built-in AI capabilities.
</p>
<a href="https://docs.gaianet.ai/agent-integrations/cursor" class="cta-button" style="display: inline-block; margin-top: 1rem; font-size: 0.9rem; padding: 0.6rem 1.2rem;">Watch Tutorial</a>
</div>
</div>
<!-- MCP Server - Coming Soon -->
<div style="background-color: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.08); transition: transform 0.3s ease; position: relative;">
<div style="position: absolute; top: 1.5rem; right: 1.5rem; background-color: var(--rust-orange); color: white; padding: 0.5rem 1rem; border-radius: 20px; font-size: 0.8rem; font-weight: bold; z-index: 2;">
Coming Soon
</div>
<div style="aspect-ratio: 16/9; background-color: #f0f0f0; display: flex; justify-content: center; align-items: center; position: relative;">
<div style="position: absolute; background-color: rgba(0,0,0,0.6); width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; color: white;">
<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<rect x="2" y="2" width="20" height="8" rx="2" ry="2"></rect>
<rect x="2" y="14" width="20" height="8" rx="2" ry="2"></rect>
<line x1="6" y1="6" x2="6.01" y2="6"></line>
<line x1="6" y1="18" x2="6.01" y2="18"></line>
</svg>
<p style="font-size: 1.2rem; margin-top: 1rem;">MCP Server</p>
</div>
</div>
<div style="padding: 2rem;">
<h3 style="color: var(--rust-dark); font-size: 1.5rem; margin-bottom: 1rem;">MCP Server Integration</h3>
<p style="font-size: 1rem; color: #555; line-height: 1.6; margin-bottom: 1.5rem;">
Our upcoming MCP Server will enable seamless integration with your development environment, providing advanced Rust development capabilities through a dedicated local server.
</p>
<a href="#" class="cta-button" style="display: inline-block; margin-top: 1rem; font-size: 0.9rem; padding: 0.6rem 1.2rem;">Stay Tuned</a>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section class="testimonials">
<div class="container">
<h2 class="section-title" style="color: white;">What Developers Say</h2>
<div class="testimonial-grid">
<div class="testimonial-card">
<p class="testimonial-text">"The Rust Learning Assistant helped me overcome the learning curve of Rust's ownership system. It's like having a mentor available 24/7."</p>
<p class="testimonial-author">- Alex Chen, Software Engineer</p>
</div>
<div class="testimonial-card">
<p class="testimonial-text">"The PR Reviewer catches issues that even our senior developers miss. The human-in-the-loop approach gives us confidence in the review process."</p>
<p class="testimonial-author">- Sarah Johnson, Tech Lead</p>
</div>
<div class="testimonial-card">
<p class="testimonial-text">"Rust Code Generator saved me hours of writing repetitive code. I describe what I need, and it gives me production-ready Rust with proper error handling."</p>
<p class="testimonial-author">- Michael Rodriguez, Freelance Developer</p>
</div>
</div>
</div>
</section>
<!-- Footer Section -->
<footer style="background: linear-gradient(135deg, var(--rust-dark) 0%, #1a1333 100%); color: var(--text-light); padding: 5rem 0 3rem; position: relative; z-index: 10; margin-top: 3rem;">
<div style="position: absolute; top: -50px; left: 0; width: 100%; height: 100px; background-color: var(--bg-light); clip-path: polygon(0 0, 100% 0, 100% 100%, 0 50%);"></div>
<div class="container">
<nav style="text-align: center; margin-bottom: 3rem;">
<a href="#" style="color: rgba(255, 255, 255, 0.8); margin: 0 1.5rem 1rem; text-decoration: none; transition: color 0.3s ease; display: inline-block; font-size: 1.2rem;">About Us</a>
<a href="#" style="color: rgba(255, 255, 255, 0.8); margin: 0 1.5rem 1rem; text-decoration: none; transition: color 0.3s ease; display: inline-block; font-size: 1.2rem;">Documentation</a>
<a href="#" style="color: rgba(255, 255, 255, 0.8); margin: 0 1.5rem 1rem; text-decoration: none; transition: color 0.3s ease; display: inline-block; font-size: 1.2rem;">Blog</a>
<a href="#" style="color: rgba(255, 255, 255, 0.8); margin: 0 1.5rem 1rem; text-decoration: none; transition: color 0.3s ease; display: inline-block; font-size: 1.2rem;">Contact</a>
</nav>
<p style="color: rgba(255, 255, 255, 0.6); text-align: center; font-size: 1rem;">© 2025 LowCodeRust. All rights reserved.</p>
</div>
</footer>