forked from Petexy/Linexin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1402 lines (1310 loc) · 92 KB
/
Copy pathindex.html
File metadata and controls
1402 lines (1310 loc) · 92 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="en" class="scroll-smooth">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description"
content="Download Linexin Linux. Pre-configured Arch-based Linux distribution built for creators and gamers. Easily install Affinity Suite , DaVinci Resolve on Linux. Made by Petexy / Linexy.">
<title>Linexin - Fast and Elegant OS</title>
<link rel="icon" type="image/png" href="https://i.ibb.co/n8BPh4sh/logo.png">
<script src="https://cdn.tailwindcss.com"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap"
rel="stylesheet">
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
sans: ['"Plus Jakarta Sans"', 'sans-serif'],
},
colors: {
bg: '#0f0518',
primary: '#9d4edd',
primaryHover: '#7b2cbf',
surface: '#180a29',
},
}
}
}
</script>
<style>
:root {
--color-primary: #9d4edd;
}
body {
background-color: #05010a;
color: #e9d5ff;
overflow-x: hidden;
}
.noise-bg {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
pointer-events: none;
z-index: 0;
opacity: 0.04;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}
.aurora-blob {
position: absolute;
background: radial-gradient(circle, rgba(157, 78, 221, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
border-radius: 50%;
filter: blur(80px);
z-index: -1;
transition: transform 0.1s cubic-bezier(0, 0, 0.2, 1);
will-change: transform;
}
.glass-panel {
background: rgba(20, 10, 35, 0.4);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid rgba(255, 255, 255, 0.08);
box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.2);
}
.btn-shimmer {
position: relative;
overflow: hidden;
}
.btn-shimmer::after {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: 0.5s;
}
.btn-shimmer:hover::after {
left: 100%;
transition: 0.7s ease-in-out;
}
.text-gradient {
background: linear-gradient(135deg, #fff 0%, #d8b4fe 50%, #9d4edd 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.animate-gradient {
background-size: 200% auto;
animation: gradientFlow 3s linear infinite;
}
@keyframes gradientFlow {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.nav-link {
position: relative;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -4px;
left: 0;
background-color: #9d4edd;
transition: width 0.3s ease-in-out;
}
.nav-link:hover::after {
width: 100%;
}
.tilt-card {
transform-style: preserve-3d;
transform: perspective(1000px);
transition: transform 0.1s ease-out;
}
.tilt-content {
transform: translateZ(20px);
}
/* --- NEW: FAQ Animation Styles --- */
.faq-answer {
max-height: 0;
opacity: 0;
overflow: hidden;
border-top-color: transparent;
/* Hide border when closed */
transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
opacity 0.4s ease,
border-color 0.3s ease;
}
.faq-answer.open {
opacity: 1;
border-top-color: rgba(255, 255, 255, 0.05);
/* Restore border */
}
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #0f0518;
}
::-webkit-scrollbar-thumb {
background: #331849;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #9d4edd;
}
.segmented-control {
background: rgba(255, 255, 255, 0.05);
padding: 4px;
border-radius: 999px;
display: inline-flex;
position: relative;
border: 1px solid rgba(255, 255, 255, 0.1);
}
.segment-btn {
padding: 8px 24px;
border-radius: 999px;
font-weight: 600;
position: relative;
z-index: 10;
transition: color 0.3s;
}
.segment-active {
color: white;
}
.segment-inactive {
color: #9ca3af;
}
.segment-inactive:hover {
color: #e9d5ff;
}
.segment-slider {
position: absolute;
top: 4px;
bottom: 4px;
left: 4px;
width: calc(50% - 4px);
background: #9d4edd;
border-radius: 999px;
transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
z-index: 1;
box-shadow: 0 0 20px rgba(157, 78, 221, 0.5);
}
.reveal {
opacity: 0;
transform: translateY(30px);
transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.active {
opacity: 1;
transform: translateY(0);
}
.loading-overlay {
position: fixed;
inset: 0;
background: #0f0518;
z-index: 9999;
display: flex;
align-items: center;
justify-content: center;
transition: opacity 0.5s ease-out;
}
#navbar-container {
transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
</style>
</head>
<body class="antialiased selection:bg-[#9d4edd] selection:text-white">
<div id="loading-overlay" class="loading-overlay">
<div class="w-16 h-16 border-4 border-white/10 border-t-[#9d4edd] rounded-full animate-spin"></div>
</div>
<div class="noise-bg"></div>
<div class="fixed top-0 left-0 w-full h-full overflow-hidden -z-10 pointer-events-none">
<div class="aurora-blob w-[500px] h-[500px] top-[-10%] left-[-10%] opacity-40"></div>
<div class="aurora-blob w-[600px] h-[600px] bottom-[-10%] right-[-10%] opacity-30"></div>
</div>
<nav class="fixed left-1/2 -translate-x-1/2 z-50 w-full flex justify-center pointer-events-none">
<div id="navbar-container"
class="pointer-events-auto mt-0 w-full max-w-full rounded-none border-b border-white/10 bg-[#0f0518]/80 backdrop-blur-md py-3 flex justify-center items-center relative shadow-lg">
<div class="w-full max-w-6xl px-6 flex justify-between items-center h-full">
<a href="#" class="flex items-center gap-x-3 group">
<div class="relative">
<div
class="absolute inset-0 bg-[#9d4edd] blur-lg opacity-40 group-hover:opacity-60 transition-opacity">
</div>
<img src="https://i.ibb.co/n8BPh4sh/logo.png" alt="Linexin Logo" class="relative h-8 w-8"
data-translate-key="logo_alt" data-translate-type="alt">
</div>
<span class="text-xl font-bold tracking-tight text-white">Linexin</span>
</a>
<div class="hidden md:flex items-center gap-8">
<div class="flex gap-6 text-sm font-medium text-gray-300">
<a href="#features" class="nav-link hover:text-white transition-colors"
data-translate-key="nav_features">Features</a>
<a href="#showcase" class="nav-link hover:text-white transition-colors"
data-translate-key="nav_showcase">Showcase</a>
<a href="#faq" class="nav-link hover:text-white transition-colors"
data-translate-key="nav_faq">FAQ</a>
<a href="#community" class="nav-link hover:text-white transition-colors"
data-translate-key="nav_github">GitHub</a>
</div>
<div class="h-4 w-px bg-white/10"></div>
<div class="relative group z-50">
<button
class="flex items-center text-sm font-medium text-gray-300 hover:text-white transition-colors gap-1">
<span id="current-lang-desktop">EN</span>
<svg class="w-3 h-3 opacity-50" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M19 9l-7 7-7-7"></path>
</svg>
</button>
<div
class="absolute right-0 top-full pt-4 opacity-0 invisible group-hover:opacity-100 group-hover:visible transition-all duration-200 transform origin-top-right">
<div
class="bg-[#1a0b2e] border border-white/10 rounded-xl p-2 w-40 flex flex-col gap-1 shadow-2xl overflow-hidden">
<a href="#"
class="px-3 py-2 text-sm text-gray-300 hover:text-white hover:bg-white/10 rounded-lg transition-colors"
data-lang="en">English</a>
<a href="#"
class="px-3 py-2 text-sm text-gray-300 hover:text-white hover:bg-white/10 rounded-lg transition-colors"
data-lang="pl">Polski</a>
<a href="#"
class="px-3 py-2 text-sm text-gray-300 hover:text-white hover:bg-white/10 rounded-lg transition-colors"
data-lang="ru">Русский</a>
<a href="#"
class="px-3 py-2 text-sm text-gray-300 hover:text-white hover:bg-white/10 rounded-lg transition-colors"
data-lang="es">Español</a>
<a href="#"
class="px-3 py-2 text-sm text-gray-300 hover:text-white hover:bg-white/10 rounded-lg transition-colors"
data-lang="ua">Українська</a>
<a href="#"
class="px-3 py-2 text-sm text-gray-300 hover:text-white hover:bg-white/10 rounded-lg transition-colors"
data-lang="de">Deutsch</a>
<a href="#"
class="px-3 py-2 text-sm text-gray-300 hover:text-white hover:bg-white/10 rounded-lg transition-colors"
data-lang="fr">Français</a>
<a href="#"
class="px-3 py-2 text-sm text-gray-300 hover:text-white hover:bg-white/10 rounded-lg transition-colors"
data-lang="pt">Português</a>
<a href="#"
class="px-3 py-2 text-sm text-gray-300 hover:text-white hover:bg-white/10 rounded-lg transition-colors"
data-lang="zh">中文</a>
<a href="#"
class="px-3 py-2 text-sm text-gray-300 hover:text-white hover:bg-white/10 rounded-lg transition-colors"
data-lang="hi">हिन्दी</a>
</div>
</div>
</div>
<a href="https://mega.nz/file/u6AS3YBZ#4u5iHnoSeLQZSfmqAvwoQvSkbR_8iUAiByrb1S2On4k"
class="btn-shimmer bg-[#9d4edd] text-white px-5 py-2 rounded-full text-sm font-semibold shadow-[0_0_20px_rgba(157,78,221,0.3)] hover:shadow-[0_0_30px_rgba(157,78,221,0.5)] hover:scale-105 active:scale-95 transition-all duration-300"
data-translate-key="nav_download">
Download
</a>
</div>
<button id="mobile-menu-btn" class="md:hidden text-white p-2">
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M4 6h16M4 12h16m-7 6h7"></path>
</svg>
</button>
</div>
</div>
<div id="mobile-menu"
class="hidden absolute top-full left-0 right-0 mt-4 mx-4 glass-panel rounded-2xl p-4 flex-col gap-4 pointer-events-auto">
<a href="#features" class="block p-2 text-gray-300 hover:text-white"
data-translate-key="nav_features">Features</a>
<a href="#showcase" class="block p-2 text-gray-300 hover:text-white"
data-translate-key="nav_showcase">Showcase</a>
<a href="#faq" class="block p-2 text-gray-300 hover:text-white" data-translate-key="nav_faq">FAQ</a>
<a href="https://mega.nz/file/u6AS3YBZ#4u5iHnoSeLQZSfmqAvwoQvSkbR_8iUAiByrb1S2On4k"
class="block w-full text-center bg-[#9d4edd] text-white py-3 rounded-xl font-semibold hover:scale-105 active:scale-95 transition-all"
data-translate-key="nav_download">Download</a>
<div class="grid grid-cols-5 gap-2 pt-4 border-t border-white/10 text-center text-xs text-gray-400">
<span data-lang="en">EN</span><span data-lang="pl">PL</span><span data-lang="ru">RU</span><span
data-lang="de">DE</span><span data-lang="fr">FR</span>
</div>
</div>
</nav>
<main class="relative z-10">
<section class="relative min-h-screen flex items-center justify-center pt-24 pb-20 overflow-hidden">
<div class="absolute inset-0 -z-20">
<img src="https://i.ibb.co/Vcx6FVSM/logo.png" alt="Background"
class="w-full h-full object-cover opacity-40 mix-blend-overlay" decoding="async">
</div>
<div class="absolute inset-0 bg-gradient-to-b from-transparent via-[#0f0518]/80 to-[#0f0518] -z-10"></div>
<div class="container relative mx-auto px-6 text-center z-10">
<div
class="inline-flex items-center gap-2 px-3 py-1 rounded-full bg-white/5 border border-white/10 text-xs font-medium text-[#d8b4fe] mb-8 reveal">
<span class="w-2 h-2 rounded-full bg-[#9d4edd] animate-pulse"></span>
<span data-translate-key="hero_badge">v2.0 Now Available</span>
</div>
<h1 class="text-6xl md:text-8xl font-bold tracking-tighter text-white mb-6 reveal stagger-1 leading-[1.1]"
data-translate-key="hero_title">
Experience <br>
<span class="text-gradient animate-gradient">Computing Freedom</span>
</h1>
<p class="text-lg md:text-xl text-gray-400 max-w-2xl mx-auto mb-10 reveal stagger-2 leading-relaxed"
data-translate-key="hero_subtitle">
A lightweight Linux distribution that combines elegance with powerful performance. Use preconfigured
Arch-based (btw) distro that is ready to use, play your favorite games and easily install creative
tools like Affinity suite or DaVinci Resolve.
</p>
<div class="flex flex-col sm:flex-row justify-center items-center gap-4 reveal stagger-3">
<a href="https://mega.nz/file/u6AS3YBZ#4u5iHnoSeLQZSfmqAvwoQvSkbR_8iUAiByrb1S2On4k"
class="btn-shimmer bg-[#9d4edd] hover:bg-[#8b3cc1] text-white px-8 py-4 rounded-xl text-lg font-bold shadow-lg shadow-[#9d4edd]/25 hover:scale-105 active:scale-95 transition-all duration-300 w-full sm:w-auto"
data-translate-key="hero_button_download">
Download Now
</a>
<a href="#features"
class="px-8 py-4 rounded-xl text-lg font-medium text-white border border-white/10 bg-white/5 backdrop-blur-md hover:bg-white/10 hover:scale-105 active:scale-95 transition-all duration-300 w-full sm:w-auto"
data-translate-key="hero_button_learn">
Learn More
</a>
</div>
</div>
</section>
<section id="features" class="py-24 relative">
<div class="container mx-auto px-6">
<div class="text-center mb-16 reveal">
<h2 class="text-3xl md:text-4xl font-bold text-white mb-4" data-translate-key="features_title">Why
Choose Linexin?</h2>
<p class="text-gray-400" data-translate-key="features_subtitle">Everything you need, nothing you
don't.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6">
<div
class="glass-panel p-8 rounded-3xl hover:border-[#9d4edd]/50 transition-colors duration-300 group reveal stagger-1 tilt-card">
<div class="tilt-content">
<div
class="w-12 h-12 rounded-2xl bg-gradient-to-br from-red-500/20 to-orange-500/20 flex items-center justify-center mb-6 group-hover:scale-110 transition-transform">
<svg class="w-6 h-6 text-red-400" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M13 10V3L4 14h7v7l9-11h-7z" />
</svg>
</div>
<h3 class="text-xl font-bold text-white mb-3" data-translate-key="feature_1_title">Blazing
Fast</h3>
<p class="text-gray-400 leading-relaxed" data-translate-key="feature_1_text">Built on a
minimal base, Linexin is optimized for speed and responsiveness, booting up in seconds.
</p>
</div>
</div>
<div
class="glass-panel p-8 rounded-3xl hover:border-[#9d4edd]/50 transition-colors duration-300 group reveal stagger-2 tilt-card">
<div class="tilt-content">
<div
class="w-12 h-12 rounded-2xl bg-gradient-to-br from-blue-500/20 to-cyan-500/20 flex items-center justify-center mb-6 group-hover:scale-110 transition-transform">
<svg class="w-6 h-6 text-blue-400" fill="none" viewBox="0 0 24 24"
stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M15.232 5.232l3.536 3.536m-2.036-5.036a2.5 2.5 0 113.536 3.536L6.5 21.036H3v-3.5L15.232 5.232z" />
</svg>
</div>
<h3 class="text-xl font-bold text-white mb-3" data-translate-key="feature_2_title">Creative
Work</h3>
<p class="text-gray-400 leading-relaxed" data-translate-key="feature_2_text">With Affinity
Installer and DaVinci Installer built-in, you can easily use creative tools after only a
couple of clicks.</p>
</div>
</div>
<div
class="glass-panel p-8 rounded-3xl hover:border-[#9d4edd]/50 transition-colors duration-300 group reveal stagger-3 tilt-card">
<div class="tilt-content">
<div
class="w-12 h-12 rounded-2xl bg-gradient-to-br from-green-500/20 to-emerald-500/20 flex items-center justify-center mb-6 group-hover:scale-110 transition-transform">
<svg class="w-6 h-6 text-green-400" fill="none" viewBox="0 0 24 24"
stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M14.752 11.168l-3.197-2.132A1 1 0 0010 9.87v4.263a1 1 0 001.555.832l3.197-2.132a1 1 0 000-1.664z" />
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>
</div>
<h3 class="text-xl font-bold text-white mb-3" data-translate-key="feature_3_title">Gaming
Ready</h3>
<p class="text-gray-400 leading-relaxed" data-translate-key="feature_3_text">Comes
pre-packaged with Steam, gamescope and gamemode that can boost your gaming performance.
</p>
</div>
</div>
</div>
</div>
</section>
<section id="showcase" class="py-24 bg-gradient-to-b from-transparent to-[#0f0518]/50">
<div class="container mx-auto px-6">
<div class="flex flex-col items-center mb-12 text-center reveal">
<h2 class="text-3xl md:text-4xl font-bold text-white mb-4" data-translate-key="showcase_title">
Beautifully Crafted Desktop</h2>
<p class="text-gray-400" data-translate-key="showcase_subtitle">An interface that's both powerful
and a pleasure to use.</p>
</div>
<div class="relative glass-panel p-2 rounded-2xl max-w-5xl mx-auto shadow-2xl reveal">
<div class="overflow-hidden rounded-xl aspect-video bg-black/50 relative">
<img id="showcase-image" src="" alt="OS Screenshot"
class="w-full h-full object-cover transition-opacity duration-500">
<div class="absolute inset-0 flex items-center justify-between p-4 pointer-events-none">
<button id="prev-button"
class="pointer-events-auto p-3 rounded-full bg-black/30 backdrop-blur-md text-white hover:bg-white/10 transition-all border border-white/10">
<svg class="w-5 h-5" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M15 19l-7-7 7-7" />
</svg>
</button>
<button id="next-button"
class="pointer-events-auto p-3 rounded-full bg-black/30 backdrop-blur-md text-white hover:bg-white/10 transition-all border border-white/10">
<svg class="w-5 h-5" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M9 5l7 7-7 7" />
</svg>
</button>
</div>
</div>
</div>
<div class="mt-32 text-center">
<h2 class="text-3xl md:text-4xl font-bold text-white mb-8 reveal"
data-translate-key="more_showcase_title">Change your style!</h2>
<div class="mb-12 reveal">
<div class="segmented-control">
<div class="segment-slider" id="slider-bg"></div>
<button id="btn-linexin" class="segment-btn segment-active"
data-translate-key="style_btn_linexin">
Linexin Desktop
</button>
<button id="btn-kinexin" class="segment-btn segment-inactive"
data-translate-key="style_btn_kinexin">
Kinexin Desktop
</button>
</div>
</div>
<div id="grid-linexin"
class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-2 gap-8 max-w-5xl mx-auto transition-all duration-500">
<div
class="group glass-panel rounded-2xl overflow-hidden p-1 reveal stagger-1 transition-transform duration-300 hover:-translate-y-2">
<div class="overflow-hidden rounded-xl aspect-video">
<img src="https://i.ibb.co/5WcRhwB6/default.png"
class="w-full h-full object-cover group-hover:opacity-90 transition-opacity">
</div>
<div class="py-3 font-medium text-white">Linexin</div>
</div>
<div
class="group glass-panel rounded-2xl overflow-hidden p-1 reveal stagger-2 transition-transform duration-300 hover:-translate-y-2">
<div class="overflow-hidden rounded-xl aspect-video">
<img src="https://i.ibb.co/67gxqYZc/windowish.png"
class="w-full h-full object-cover group-hover:opacity-90 transition-opacity">
</div>
<div class="py-3 font-medium text-white">Windows-like</div>
</div>
<div
class="group glass-panel rounded-2xl overflow-hidden p-1 reveal stagger-3 transition-transform duration-300 hover:-translate-y-2">
<div class="overflow-hidden rounded-xl aspect-video">
<img src="https://i.ibb.co/YBZn2Hhn/ubunexin.png"
class="w-full h-full object-cover group-hover:opacity-90 transition-opacity">
</div>
<div class="py-3 font-medium text-white">Ubuntu-like</div>
</div>
<div
class="group glass-panel rounded-2xl overflow-hidden p-1 reveal stagger-4 transition-transform duration-300 hover:-translate-y-2">
<div class="overflow-hidden rounded-xl aspect-video">
<img src="https://i.ibb.co/d43cx6YJ/gnome.png"
class="w-full h-full object-cover group-hover:opacity-90 transition-opacity">
</div>
<div class="py-3 font-medium text-white">Pure GNOME</div>
</div>
</div>
<div id="grid-kinexin"
class="hidden grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-2 gap-8 max-w-5xl mx-auto transition-all duration-500">
<div
class="group glass-panel rounded-2xl overflow-hidden p-1 transition-transform duration-300 hover:-translate-y-2">
<div class="overflow-hidden rounded-xl aspect-video">
<img src="https://i.ibb.co/DcSFw62/1.png"
class="w-full h-full object-cover group-hover:opacity-90 transition-opacity">
</div>
<div class="py-3 font-medium text-white" data-translate-key="kinexin_style_1">Kinexin</div>
</div>
<div
class="group glass-panel rounded-2xl overflow-hidden p-1 transition-transform duration-300 hover:-translate-y-2">
<div class="overflow-hidden rounded-xl aspect-video">
<img src="https://i.ibb.co/nMqVYVh2/2.png"
class="w-full h-full object-cover group-hover:opacity-90 transition-opacity">
</div>
<div class="py-3 font-medium text-white" data-translate-key="kinexin_style_2">10ish</div>
</div>
<div
class="group glass-panel rounded-2xl overflow-hidden p-1 transition-transform duration-300 hover:-translate-y-2">
<div class="overflow-hidden rounded-xl aspect-video">
<img src="https://i.ibb.co/23z20478/3.png"
class="w-full h-full object-cover group-hover:opacity-90 transition-opacity">
</div>
<div class="py-3 font-medium text-white" data-translate-key="kinexin_style_3">11ish</div>
</div>
<div
class="group glass-panel rounded-2xl overflow-hidden p-1 transition-transform duration-300 hover:-translate-y-2">
<div class="overflow-hidden rounded-xl aspect-video">
<img src="https://i.ibb.co/qFcffRVr/4.png"
class="w-full h-full object-cover group-hover:opacity-90 transition-opacity">
</div>
<div class="py-3 font-medium text-white" data-translate-key="kinexin_style_4">2worlds</div>
</div>
</div>
</div>
</div>
</section>
<section id="faq" class="py-24 relative">
<div class="container mx-auto px-6 max-w-3xl">
<div class="text-center mb-12 reveal">
<h2 class="text-3xl md:text-4xl font-bold text-white" data-translate-key="faq_title">Frequently
Asked Questions</h2>
</div>
<div class="space-y-4" id="faq-accordion">
<div class="glass-panel rounded-xl overflow-hidden reveal stagger-1 group">
<button
class="faq-question w-full flex justify-between items-center text-left p-6 hover:bg-white/5 transition-colors">
<span class="text-lg font-semibold text-white" data-translate-key="faq_q1">What is Linexin
OS?</span>
<svg class="faq-arrow w-5 h-5 text-[#9d4edd] transition-transform duration-300" fill="none"
stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M19 9l-7 7-7-7"></path>
</svg>
</button>
<div class="faq-answer bg-black/20 border-t border-white/5">
<div class="p-6 text-gray-400 leading-relaxed" data-translate-key="faq_a1">
Linexin is a Linux distribution based on Arch Linux. It is designed to be a fast and
user-friendly operating system, pre-configured for creative work and games.
</div>
</div>
</div>
<div class="glass-panel rounded-xl overflow-hidden reveal stagger-2 group">
<button
class="faq-question w-full flex justify-between items-center text-left p-6 hover:bg-white/5 transition-colors">
<span class="text-lg font-semibold text-white" data-translate-key="faq_q2">Who is Linexin
for?</span>
<svg class="faq-arrow w-5 h-5 text-[#9d4edd] transition-transform duration-300" fill="none"
stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M19 9l-7 7-7-7"></path>
</svg>
</button>
<div class="faq-answer bg-black/20 border-t border-white/5">
<div class="p-6 text-gray-400 leading-relaxed" data-translate-key="faq_a2">
Linexin is ideal for content creators who need easy access to tools like the Affinity
suite and DaVinci Resolve, gamers looking for an optimized experience with Steam, Epic
Games or any other Launcher, and anyone who wants a beautiful and performant Arch-based
system.
</div>
</div>
</div>
<div class="glass-panel rounded-xl overflow-hidden reveal stagger-3 group">
<button
class="faq-question w-full flex justify-between items-center text-left p-6 hover:bg-white/5 transition-colors">
<span class="text-lg font-semibold text-white" data-translate-key="faq_q3">Is Linexin free
to use?</span>
<svg class="faq-arrow w-5 h-5 text-[#9d4edd] transition-transform duration-300" fill="none"
stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M19 9l-7 7-7-7"></path>
</svg>
</button>
<div class="faq-answer bg-black/20 border-t border-white/5">
<div class="p-6 text-gray-400 leading-relaxed" data-translate-key="faq_a3">
Yes and always will be. Linexin is a free and open-source project. You can download,
use, modify, and distribute it freely with accordance to GNU GPL v3 license.
</div>
</div>
</div>
<div class="glass-panel rounded-xl overflow-hidden reveal stagger-4 group">
<button
class="faq-question w-full flex justify-between items-center text-left p-6 hover:bg-white/5 transition-colors">
<span class="text-lg font-semibold text-white" data-translate-key="faq_q4">What desktop
environment does it use?</span>
<svg class="faq-arrow w-5 h-5 text-[#9d4edd] transition-transform duration-300" fill="none"
stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M19 9l-7 7-7-7"></path>
</svg>
</button>
<div class="faq-answer bg-black/20 border-t border-white/5">
<div class="p-6 text-gray-400 leading-relaxed" data-translate-key="faq_a4">
Linexin uses a beautifully customized GNOME environment by default. All extensions can
be disabled for a vanilla experience. <br><br> However, you can pick carefully crafted
custom KDE Plasma environment instead during the installation. With it, you can
experience truly marvelous glass effects all around the system.
</div>
</div>
</div>
<div class="glass-panel rounded-xl overflow-hidden reveal stagger-5 group">
<button
class="faq-question w-full flex justify-between items-center text-left p-6 hover:bg-white/5 transition-colors">
<span class="text-lg font-semibold text-white" data-translate-key="faq_q5">Is Linexin
immutable?</span>
<svg class="faq-arrow w-5 h-5 text-[#9d4edd] transition-transform duration-300" fill="none"
stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M19 9l-7 7-7-7"></path>
</svg>
</button>
<div class="faq-answer bg-black/20 border-t border-white/5">
<div class="p-6 text-gray-400 leading-relaxed" data-translate-key="faq_a5">
No, it is not immutable. However, it ships minimal system packages. Average users are
advised to use Flatpaks, while power users can use pacman and AUR.
</div>
</div>
</div>
</div>
</div>
</section>
<section id="community" class="py-24 text-center border-t border-white/5 relative bg-[#0f0518]">
<div class="container mx-auto px-6 reveal">
<h2 class="text-4xl font-bold text-white mb-4" data-translate-key="community_title">Open-Source Project
</h2>
<p class="text-gray-400 max-w-2xl mx-auto mb-8" data-translate-key="community_subtitle">
Linexin is built with fully open-sourced code. Fork, modify, or contribute on GitHub.
</p>
<a href="https://github.com/Petexy/Linexin" target="_blank" rel="noopener noreferrer"
class="inline-flex items-center gap-2 bg-[#9d4edd]/20 hover:bg-[#9d4edd]/30 text-white px-8 py-4 rounded-xl font-bold transition-all duration-300 hover:scale-105 active:scale-95 border border-[#9d4edd]/40 shadow-[0_0_24px_rgba(157,78,221,0.25)] backdrop-blur-md"
data-translate-key="community_button">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24">
<path fill-rule="evenodd"
d="M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.466-1.11-1.466-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.53 2.341 1.088 2.91.832.092-.647.35-1.088.636-1.338-2.22-.253-4.555-1.113-4.555-4.951 0-1.093.39-1.988 1.029-2.688-.103-.253-.446-1.272.098-2.65 0 0 .84-.27 2.75 1.026A9.564 9.564 0 0112 6.844c.85.004 1.705.115 2.504.337 1.909-1.296 2.747-1.027 2.747-1.027.546 1.379.202 2.398.1 2.651.64.7 1.028 1.595 1.028 2.688 0 3.848-2.339 4.695-4.566 4.943.359.309.678.92.678 1.855 0 1.338-.012 2.419-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0022 12.017C22 6.484 17.522 2 12 2z"
clip-rule="evenodd"></path>
</svg>
Visit GitHub
</a>
</div>
</section>
</main>
<footer class="relative z-10 py-8 text-center text-sm text-gray-500 border-t border-white/5 bg-[#05010a]">
<div class="container mx-auto px-6">
<p data-translate-key="footer_copy"> 2025-2026 Linexin Project</p>
<p class="mt-2" data-translate-key="footer_love">Designed with ❤️ for the open-source community.</p>
</div>
</footer>
<script>
const translations = {
en: {
logo_alt: "Linexin Logo",
nav_features: "Features",
nav_showcase: "Showcase",
nav_faq: "FAQ",
nav_github: "GitHub",
nav_download: "Download",
hero_badge: "v2.0 Now Available",
hero_title: "Experience <br> <span class=\"text-gradient\">Computing Freedom</span>",
hero_subtitle: "A lightweight Linux distribution that combines elegance with powerful performance. Use preconfigured Arch-based (btw) distro that is ready to use, play your favorite games and easily install creative tools like Affinity suite or DaVinci Resolve.",
hero_button_download: "Download Now",
hero_button_learn: "Learn More",
features_title: "Why Choose Linexin?",
features_subtitle: "Everything you need, nothing you don't.",
feature_1_title: "Blazing Fast",
feature_1_text: "Built on a minimal base, Linexin is optimized for speed and responsiveness, booting up in seconds.",
feature_2_title: "Creative Work",
feature_2_text: "With Affinity Installer and DaVinci Installer built-in, you can easily use creative tools after only a couple of clicks.",
feature_3_title: "Gaming Ready",
feature_3_text: "Comes pre-packaged with Steam, gamescope and gamemode that can boost your gaming performance.",
showcase_title: "Beautifully Crafted Desktop",
showcase_subtitle: "An interface that's both powerful and a pleasure to use.",
more_showcase_title: "Change your style!",
style_btn_linexin: "Linexin Desktop",
style_btn_kinexin: "Kinexin Desktop",
kinexin_style_1: "Kinexin",
kinexin_style_2: "10ish",
kinexin_style_3: "11ish",
kinexin_style_4: "2worlds",
faq_title: "Frequently Asked Questions",
faq_q1: "What is Linexin OS?",
faq_a1: "Linexin is a Linux distribution based on Arch Linux. It is designed to be a fast and user-friendly operating system, pre-configured for creative work and games.",
faq_q2: "Who is Linexin for?",
faq_a2: "Linexin is ideal for content creators who need easy access to tools like the Affinity suite and DaVinci Resolve, gamers looking for an optimized experience with Steam, Epic Games or any other Launcher, and anyone who wants a beautiful and performant Arch-based system.",
faq_q3: "Is Linexin free to use?",
faq_a3: "Yes and always will be. Linexin is a free and open-source project. You can download, use, modify, and distribute it freely with accordance to GNU GPL v3 license.",
faq_q4: "What desktop environment does it use?",
faq_a4: "Linexin uses a beautifully customized GNOME environment by default. All extensions can be disabled for a vanilla experience. <br><br> However, you can pick carefully crafted custom KDE Plasma environment instead during the installation. With it, you can experience truly marvelous glass effects all around the system.",
faq_q5: "Is Linexin immutable?",
faq_a5: "No, it is not immutable. However, it ships minimal system packages. Average users are advised to use Flatpaks, while power users can use pacman and AUR.",
community_title: "Open-Source Project",
community_subtitle: "Linexin is built with fully open-sourced code. Fork, modify, or contribute on GitHub.",
community_button: "Visit GitHub",
footer_copy: "© 2025-2026 Linexin Project",
footer_love: "Designed with ❤️ for the open-source community."
},
pl: {
logo_alt: "Logo Linexin",
nav_features: "Funkcje",
nav_showcase: "Galeria",
nav_faq: "FAQ",
nav_github: "GitHub",
nav_download: "Pobierz",
hero_badge: "v2.0 Już Dostępna",
hero_title: "Poczuj <br> <span class=\"text-gradient\">Komputerową Wolność</span>",
hero_subtitle: "Lekka dystrybucja Linuksa, która łączy elegancję z potężną wydajnością. Używaj wstępnie skonfigurowanego systemu opartego na Archu (btw), gotowego do użycia, graj w ulubione gry i łatwo instaluj narzędzia kreatywne, takie jak pakiet Affinity czy DaVinci Resolve.",
hero_button_download: "Pobierz Teraz",
hero_button_learn: "Dowiedz się więcej",
features_title: "Dlaczego Linexin?",
features_subtitle: "Wszystko, czego potrzebujesz, nic zbędnego.",
feature_1_title: "Błyskawicznie Szybki",
feature_1_text: "Zbudowany na minimalnej bazie, Linexin jest zoptymalizowany pod kątem szybkości i responsywności, uruchamiając się w kilka sekund.",
feature_2_title: "Praca Kreatywna",
feature_2_text: "Dzięki wbudowanym instalatorom Affinity i DaVinci, możesz łatwo korzystać z narzędzi kreatywnych po zaledwie kilku kliknięciach.",
feature_3_title: "Gotowy do Gry",
feature_3_text: "Dostarczany ze Steam, gamescope i gamemode, które mogą zwiększyć wydajność w grach.",
showcase_title: "Pięknie Wykonany Pulpit",
showcase_subtitle: "Interfejs, który jest zarówno potężny, jak i przyjemny w użyciu.",
more_showcase_title: "Zmień swój styl!",
style_btn_linexin: "Pulpit Linexin",
style_btn_kinexin: "Pulpit Kinexin",
kinexin_style_1: "Kinexin",
kinexin_style_2: "10ish",
kinexin_style_3: "11ish",
kinexin_style_4: "2worlds",
faq_title: "Często Zadawane Pytania",
faq_q1: "Czym jest Linexin OS?",
faq_a1: "Linexin to dystrybucja Linuksa oparta na Arch Linux. Została zaprojektowana jako szybki i przyjazny dla użytkownika system operacyjny, wstępnie skonfigurowany do pracy kreatywnej i gier.",
faq_q2: "Dla kogo jest Linexin?",
faq_a2: "Linexin jest idealny dla twórców treści potrzebujących łatwego dostępu do narzędzi takich jak pakiet Affinity i DaVinci Resolve, graczy szukających zoptymalizowanego doświadczenia ze Steam i Epic Games, oraz każdego, kto chce pięknego i wydajnego systemu opartego na Archu.",
faq_q3: "Czy Linexin jest darmowy?",
faq_a3: "Tak i zawsze będzie. Linexin to projekt darmowy i otwartoźródłowy. Możesz go pobierać, używać, modyfikować i rozpowszechniać zgodnie z licencją GNU GPL v3.",
faq_q4: "Jakiego środowiska graficznego używa?",
faq_a4: "Linexin domyślnie używa pięknie dostosowanego środowiska GNOME. Wszystkie rozszerzenia można wyłączyć, aby uzyskać czyste doświadczenie. <br><br> Jednak podczas instalacji możesz wybrać starannie przygotowane środowisko KDE Plasma, oferujące wspaniałe efekty przezroczystości w całym systemie.",
faq_q5: "Czy Linexin jest niezmienny (immutable)?",
faq_a5: "Nie, nie jest systemem immutable. Dostarcza jednak minimalne pakiety systemowe. Przeciętnym użytkownikom zaleca się używanie Flatpaków, podczas gdy zaawansowani użytkownicy mogą korzystać z pacmana i AUR.",
community_title: "Projekt Open-Source",
community_subtitle: "Linexin jest zbudowany z całkowicie otwartego kodu. Forkuj, modyfikuj lub wspieraj projekt na GitHubie.",
community_button: "Odwiedź GitHub",
footer_copy: "© 2025-2026 Projekt Linexin",
footer_love: "Zaprojektowane z ❤️ dla społeczności open-source."
},
ru: {
logo_alt: "Логотип Linexin",
nav_features: "Возможности",
nav_showcase: "Галерея",
nav_faq: "FAQ",
nav_github: "GitHub",
nav_download: "Скачать",
hero_badge: "v2.0 Уже Доступна",
hero_title: "Ощути <br> <span class=\"text-gradient\">Свободу Вычислений</span>",
hero_subtitle: "Легкий дистрибутив Linux, сочетающий элегантность с высокой производительностью. Используйте предварительно настроенную систему на базе Arch (btw), готовую к играм и творчеству с инструментами вроде Affinity и DaVinci Resolve.",
hero_button_download: "Скачать Сейчас",
hero_button_learn: "Узнать Больше",
features_title: "Почему Linexin?",
features_subtitle: "Все, что нужно, и ничего лишнего.",
feature_1_title: "Молниеносная Скорость",
feature_1_text: "Построенный на минимальной базе, Linexin оптимизирован для скорости и отзывчивости, загружаясь за считанные секунды.",
feature_2_title: "Творческая Работа",
feature_2_text: "Благодаря встроенным установщикам Affinity и DaVinci, вы можете начать творить всего за пару кликов.",
feature_3_title: "Готов к Играм",
feature_3_text: "Поставляется с предустановленными Steam, gamescope и gamemode для повышения производительности в играх.",
showcase_title: "Красивый Рабочий Стол",
showcase_subtitle: "Интерфейс, который одновременно мощный и приятный в использовании.",
more_showcase_title: "Измени свой стиль!",
style_btn_linexin: "Linexin Desktop",
style_btn_kinexin: "Kinexin Desktop",
kinexin_style_1: "Kinexin",
kinexin_style_2: "Стиль 10",
kinexin_style_3: "Стиль 11",
kinexin_style_4: "2worlds",
faq_title: "Часто Задаваемые Вопросы",
faq_q1: "Что такое Linexin OS?",
faq_a1: "Linexin — это дистрибутив Linux на базе Arch. Это быстрая и удобная ОС, предварительно настроенная для творчества и игр.",
faq_q2: "Для кого Linexin?",
faq_a2: "Linexin идеален для создателей контента, которым нужен доступ к Affinity и DaVinci Resolve, геймеров, ищущих оптимизацию для Steam и других лаунчеров, а также всех, кто хочет красивую систему на базе Arch.",
faq_q3: "Linexin бесплатен?",
faq_a3: "Да, и всегда будет. Linexin — это бесплатный проект с открытым исходным кодом (GNU GPL v3).",
faq_q4: "Какое окружение рабочего стола используется?",
faq_a4: "Linexin по умолчанию использует настроенный GNOME. Вы можете отключить расширения для стандартного вида. <br><br> При установке также можно выбрать кастомный KDE Plasma с великолепными эффектами прозрачности.",
faq_q5: "Является ли Linexin неизменяемым (immutable)?",
faq_a5: "Нет. Однако система поставляется с минимальным набором пакетов. Обычным пользователям рекомендуется использовать Flatpak, а опытным — pacman и AUR.",
community_title: "Open-Source Проект",
community_subtitle: "Linexin создан на полностью открытом коде. Форкайте, изменяйте или вносите свой вклад на GitHub.",
community_button: "Посетить GitHub",
footer_copy: "© 2025-2026 Проект Linexin",
footer_love: "Создано с ❤️ для сообщества open-source."
},
es: {
logo_alt: "Logotipo de Linexin",
nav_features: "Características",
nav_showcase: "Galería",
nav_faq: "FAQ",
nav_github: "GitHub",
nav_download: "Descargar",
hero_badge: "v2.0 Ya Disponible",
hero_title: "Experimenta <br> <span class=\"text-gradient\">La Libertad Informática</span>",
hero_subtitle: "Una distribución ligera de Linux que combina elegancia con un rendimiento potente. Usa una distro basada en Arch (btw) preconfigurada y lista para usar, juega tus juegos favoritos e instala fácilmente herramientas creativas como la suite Affinity o DaVinci Resolve.",
hero_button_download: "Descargar Ahora",
hero_button_learn: "Más Información",
features_title: "¿Por qué elegir Linexin?",
features_subtitle: "Todo lo que necesitas, nada que no.",
feature_1_title: "Increíblemente Rápido",
feature_1_text: "Construido sobre una base mínima, Linexin está optimizado para velocidad y capacidad de respuesta, arrancando en segundos.",
feature_2_title: "Trabajo Creativo",
feature_2_text: "Con los instaladores de Affinity y DaVinci integrados, puedes usar herramientas creativas fácilmente tras solo un par de clics.",
feature_3_title: "Listo para Jugar",
feature_3_text: "Viene pre-empaquetado con Steam, gamescope y gamemode que pueden mejorar tu rendimiento de juego.",
showcase_title: "Escritorio Bellamente Diseñado",
showcase_subtitle: "Una interfaz que es tanto potente como un placer de usar.",
more_showcase_title: "¡Cambia tu estilo!",
style_btn_linexin: "Escritorio Linexin",
style_btn_kinexin: "Escritorio Kinexin",
kinexin_style_1: "Kinexin",
kinexin_style_2: "Estilo 10",
kinexin_style_3: "Estilo 11",
kinexin_style_4: "2worlds",
faq_title: "Preguntas Frecuentes",
faq_q1: "¿Qué es Linexin OS?",
faq_a1: "Linexin es una distribución de Linux basada en Arch Linux. Está diseñada para ser un sistema operativo rápido y fácil de usar, preconfigurado para trabajo creativo y juegos.",
faq_q2: "¿Para quién es Linexin?",
faq_a2: "Linexin es ideal para creadores de contenido que necesitan acceso fácil a herramientas como la suite Affinity y DaVinci Resolve, jugadores que buscan una experiencia optimizada, y cualquiera que quiera un sistema basado en Arch hermoso y eficiente.",
faq_q3: "¿Es Linexin gratuito?",
faq_a3: "Sí, y siempre lo será. Linexin es un proyecto de código abierto y gratuito. Puedes descargarlo, usarlo, modificarlo y distribuirlo libremente bajo la licencia GNU GPL v3.",
faq_q4: "¿Qué entorno de escritorio utiliza?",
faq_a4: "Linexin utiliza un entorno GNOME bellamente personalizado por defecto. <br><br> Sin embargo, puedes elegir un entorno KDE Plasma personalizado durante la instalación para disfrutar de maravillosos efectos de transparencia.",
faq_q5: "¿Es Linexin inmutable?",
faq_a5: "No, no es inmutable. Sin embargo, viene con paquetes de sistema mínimos. Se aconseja a los usuarios promedio usar Flatpaks, mientras que los usuarios avanzados pueden usar pacman y AUR.",
community_title: "Proyecto de Código Abierto",
community_subtitle: "Linexin está construido con código totalmente abierto. Haz un fork, modifica o contribuye en GitHub.",
community_button: "Visitar GitHub",
footer_copy: "© 2025-2026 Proyecto Linexin",
footer_love: "Diseñado con ❤️ para la comunidad de código abierto."
},
ua: {
logo_alt: "Логотип Linexin",
nav_features: "Можливості",
nav_showcase: "Галерея",
nav_faq: "FAQ",
nav_github: "GitHub",
nav_download: "Завантажити",
hero_badge: "v2.0 Вже Доступна",
hero_title: "Відчуй <br> <span class=\"text-gradient\">Комп'ютерну Свободу</span>",
hero_subtitle: "Легкий дистрибутив Linux, що поєднує елегантність та потужну продуктивність. Використовуйте попередньо налаштовану систему на базі Arch (btw), грайте в ігри та легко встановлюйте творчі інструменти, такі як Affinity або DaVinci Resolve.",
hero_button_download: "Завантажити Зараз",
hero_button_learn: "Дізнатися Більше",
features_title: "Чому Linexin?",
features_subtitle: "Все, що потрібно, і нічого зайвого.",
feature_1_title: "Блискавично Швидкий",
feature_1_text: "Побудований на мінімальній базі, Linexin оптимізований для швидкості та чуйності, завантажуючись за лічені секунди.",
feature_2_title: "Творча Робота",
feature_2_text: "Завдяки вбудованим інсталяторам Affinity та DaVinci, ви можете почати творити лише за пару кліків.",
feature_3_title: "Готовий до Ігор",
feature_3_text: "Постачається зі Steam, gamescope та gamemode, які можуть покращити вашу ігрову продуктивність.",
showcase_title: "Красивий Робочий Стіл",
showcase_subtitle: "Інтерфейс, який є одночасно потужним і приємним у використанні.",
more_showcase_title: "Зміни свій стиль!",
style_btn_linexin: "Linexin Desktop",
style_btn_kinexin: "Kinexin Desktop",
kinexin_style_1: "Kinexin",
kinexin_style_2: "Стиль 10",
kinexin_style_3: "Стиль 11",
kinexin_style_4: "2worlds",
faq_title: "Часті Запитання",
faq_q1: "Що таке Linexin OS?",
faq_a1: "Linexin — це дистрибутив Linux на базі Arch. Це швидка та зручна ОС, попередньо налаштована для творчості та ігор.",
faq_q2: "Для кого Linexin?",
faq_a2: "Linexin ідеальний для творців контенту (Affinity, DaVinci Resolve), геймерів, які шукають оптимізацію, та всіх, хто хоче красиву систему на базі Arch.",
faq_q3: "Чи Linexin безкоштовний?",
faq_a3: "Так, і завжди буде. Linexin — це безкоштовний проект з відкритим кодом (GNU GPL v3).",
faq_q4: "Яке середовище робочого столу використовується?",
faq_a4: "Linexin за замовчуванням використовує налаштований GNOME. <br><br> Проте під час встановлення ви можете вибрати кастомний KDE Plasma з чудовими ефектами прозорості.",
faq_q5: "Чи є Linexin незмінним (immutable)?",
faq_a5: "Ні. Однак система постачається з мінімальним набором пакетів. Користувачам рекомендується використовувати Flatpak, а досвідченим — pacman та AUR.",
community_title: "Open-Source Проект",
community_subtitle: "Linexin створено на повністю відкритому коді. Форкайте, змінюйте або робіть внесок на GitHub.",
community_button: "Відвідати GitHub",
footer_copy: "© 2025-2026 Проект Linexin",
footer_love: "Створено з ❤️ для спільноти open-source."
},
de: {
logo_alt: "Linexin Logo",
nav_features: "Funktionen",
nav_showcase: "Galerie",
nav_faq: "FAQ",
nav_github: "GitHub",
nav_download: "Herunterladen",
hero_badge: "v2.0 Jetzt Verfügbar",
hero_title: "Erlebe <br> <span class=\"text-gradient\">Computer-Freiheit</span>",