-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1414 lines (1275 loc) · 52.4 KB
/
index.html
File metadata and controls
1414 lines (1275 loc) · 52.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<title>SkyCMS</title>
<meta property="og:title" content="SkyCMS" />
<meta property="og:url" content="" />
<meta property="og:type" content="article" />
<meta property="og:image" content="" />
<meta property="article:modified_time" content="2025-12-13 19:30:56Z">
<meta name="cwps-meta-path-url" content="root" />
<meta name="cwps-meta-path-updated" content="12/13/2025 19:30:56 +00:00" />
<meta name="cwps-meta-path-title" content="SkyCMS" />
<meta name="cwps-meta-author-info" content="{'Id':'e2bdd627-b421-44dc-9ea7-952f76a56e79','AuthorName':'eric@moonrise.net','AuthorDescription':'','TwitterHandle':null,'InstagramUrl':null,'Website':null,'EmailAddress':null}" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SkyCMS - The High-Performance CMS Built for the Cloud</title>
<link rel="stylesheet" href="dist/tailwind.css" />
<script>
tailwind.config = {
theme: {
extend: {
colors: {
brand: {
25: "#F7FBFE",
50: "#F1F9FE",
100: "#E2F2FC",
200: "#BEE6F9",
500: "#1CA2DB",
600: "#108CC9",
700: "#0D6797",
950: "#0C2F45",
},
gray: {
25: "#FDFDFD",
50: "#FAFAFA",
100: "#F5F5F5",
200: "#E9EAEB",
500: "#717680",
600: "#535862",
700: "#414651",
900: "#181D27",
950: "#0A0D12",
},
},
fontFamily: {
montserrat: ["Montserrat", "sans-serif"],
inter: ["Inter", "sans-serif"],
},
},
},
};
</script>
<style>
body {
background-color: white;
}
/* Hero Section Animations */
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes slideUpFadeIn {
from {
opacity: 0;
transform: translateY(50px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.hero-background {
opacity: 0;
animation: fadeIn 1s ease-out forwards;
}
.hero-text {
opacity: 0;
transform: translateY(50px);
animation: slideUpFadeIn 1s ease-out forwards;
animation-delay: 0.2s;
}
.hero-image {
opacity: 0;
animation: fadeIn 0.8s ease-out forwards;
animation-delay: 0.5s;
}
/* Performance Section Animations */
@keyframes slideDownFadeIn {
from {
opacity: 0;
transform: translateY(-30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.performance-content {
opacity: 0;
transform: translateY(-30px);
}
.performance-content.animate {
animation: slideDownFadeIn 0.8s ease-out forwards;
}
.performance-text {
opacity: 0;
transform: translateY(-30px);
}
.performance-text.animate {
animation: slideDownFadeIn 0.8s ease-out forwards;
animation-delay: 0.2s;
}
.performance-image {
opacity: 0;
transform: translateY(-30px);
}
.performance-image.animate {
animation: slideDownFadeIn 0.8s ease-out forwards;
animation-delay: 0.4s;
}
/* Blue Card Animations */
.blue-card {
opacity: 0;
transform: translateY(-30px);
}
.blue-card.animate {
animation: slideDownFadeIn 0.8s ease-out forwards;
animation-delay: 0.1s;
}
.blue-card-text {
opacity: 0;
transform: translateY(-30px);
}
.blue-card-text.animate {
animation: slideDownFadeIn 0.8s ease-out forwards;
animation-delay: 0.3s;
}
.blue-card-visual {
opacity: 0;
transform: translateY(-30px);
}
.blue-card-visual.animate {
animation: slideDownFadeIn 0.8s ease-out forwards;
animation-delay: 0.5s;
}
/* Demanding Scenarios Section Animations */
@keyframes slideUpFadeInFast {
from {
opacity: 0;
transform: translateY(40px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.scenarios-title {
opacity: 0;
transform: translateY(40px);
}
.scenarios-title.animate {
animation: slideUpFadeInFast 0.6s ease-out forwards;
}
.scenario-card {
opacity: 0;
transform: translateY(40px);
}
.scenario-card.animate {
animation: slideUpFadeInFast 0.6s ease-out forwards;
}
.scenario-card:nth-child(1).animate {
animation-delay: 0.1s;
}
.scenario-card:nth-child(2).animate {
animation-delay: 0.2s;
}
.scenario-card:nth-child(3).animate {
animation-delay: 0.3s;
}
.scenario-card:nth-child(4).animate {
animation-delay: 0.5s;
}
.scenario-card:nth-child(5).animate {
animation-delay: 0.6s;
}
/* Competition Section Animation */
.competition-section {
opacity: 0;
}
.competition-section.animate {
animation: fadeIn 1.2s ease-out forwards;
}
/* Pricing Section Animation */
.pricing-section {
opacity: 0;
}
.pricing-section.animate {
animation: fadeIn 1.2s ease-out forwards;
}
/* Closing Section Animation */
.closing-logo {
opacity: 0;
}
.closing-logo.animate {
animation: fadeIn 1.5s ease-out forwards;
}
</style>
<link rel="stylesheet" href="assets/css/vendor/ckeditor5-content.css" />
<style>
/* Hero Section Animations */
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes slideUpFadeIn {
from {
opacity: 0;
transform: translateY(50px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.hero-background {
opacity: 0;
animation: fadeIn 1s ease-out forwards;
}
.hero-text {
opacity: 0;
transform: translateY(50px);
animation: slideUpFadeIn 1s ease-out forwards;
animation-delay: 0.2s;
}
.fade {
transition: opacity 700ms ease-in-out;
opacity: 1;
}
.fade.hidden {
opacity: 0;
}
.rotation-title {
min-height: 1.2em;
display: inline-block;
}
.rotation-tagline {
min-height: 1.2em;
display: inline-block;
}
/* Fixed height container to prevent layout shift during rotation */
.hero-heading-container {
min-height: 100px;
}
@media (min-width: 640px) {
.hero-heading-container {
min-height: 110px;
}
}
@media (min-width: 1024px) {
.hero-heading-container {
min-height: 130px;
}
}
</style>
</head>
<body>
<!-- Navigation -->
<nav class="fixed top-0 left-0 right-0 z-50 pt-3 px-3 sm:px-4">
<div class="max-w-7xl mx-auto w-full">
<!-- Nav wrapper with white background, border and shadow -->
<div
class="bg-white rounded-2xl border border-gray-200 shadow-sm px-3 sm:px-4 pr-2 sm:pr-3 py-3 flex items-center justify-between min-w-0 w-full">
<!-- Logo -->
<a href='/' class="flex items-center min-w-0 flex-shrink-0">
<div class="h-8 w-8 mr-2 sm:mr-3 flex-shrink-0">
<img
src="assets/images/logomark.svg"
alt="SkyCMS Logo"
class="h-8 w-8"
/>
</div>
<span
class="font-inter font-bold text-base sm:text-lg text-gray-950 whitespace-nowrap"
>SKY CMS</span>
</a>
<!-- Centered Navigation -->
<div class="hidden lg:flex items-center justify-center space-x-8 flex-1">
<!-- About -->
<a href="docs/index.md" class="text-gray-600 hover:text-gray-900 font-semibold text-base">
Docs
</a>
<!-- Our competition -->
<a href="samples/why-skycms.html" class="text-gray-600 hover:text-gray-900 font-semibold text-base">
Why Sky?
</a>
<!-- Our competition -->
<a href="samples/sky-comparisons.html" class="text-gray-600 hover:text-gray-900 font-semibold text-base">
Comparisons
</a>
<!-- Features -->
<a href="samples/features.html" class="text-gray-600 hover:text-gray-900 font-semibold text-base">
Features
</a>
<!-- Pricing -->
<a href="#pricing" class="text-gray-600 hover:text-gray-900 font-semibold text-base">
Pricing
</a>
<!-- Pricing -->
<a href="README.md"
class="text-gray-600 hover:text-gray-900 font-semibold text-base">
GitHub
</a>
</div>
<!-- Right side - Mobile Menu Button only -->
<div class="flex items-center">
<!-- Mobile Menu Button -->
<button
class="lg:hidden p-2 rounded-lg hover:bg-gray-100"
onclick="toggleMobileMenu()"
aria-label="Toggle mobile menu"
>
<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 12h16M4 18h16"
></path>
</svg>
</button>
</div>
</div>
</div>
</nav>
<script>
function toggleMobileMenu() {
const menu = document.getElementById("mobileMenu");
menu.classList.toggle("hidden");
}
</script>
<!-- Hero Section -->
<section class="relative pt-24 lg:pt-36 pb-16 lg:pb-24 bg-white overflow-hidden mx-auto px-4 sm:px-6 lg:px-8">
<!-- Background Image -->
<div class="absolute inset-0 mt-8 mx-4 lg:mx-9 rounded-2xl hero-background" style="background-image: url('assets/images/hero-background.jpg'); background-size: cover; background-position: center; background-repeat: no-repeat;">
</div>
<div class="relative w-full">
<div class="text-center max-w-5xl mx-auto w-full hero-text">
<!-- Prominent SkyCMS branding -->
<h1 class="text-4xl sm:text-5xl md:text-6xl lg:text-7xl font-montserrat font-bold leading-tight tracking-tight mb-8 px-2">
<span class="text-brand-600">SkyCMS</span><span class="text-gray-950">:</span>
<span class="text-gray-950">The Edge-Native CMS</span>
</h1>
<!-- Rotating audience titles -->
<div id="learn-more" class="hero-heading-container" data-href="samples/why-skycms.html" onclick="learnMore(this)" title="Click to learn more.">
<p class="text-xl sm:text-2xl md:text-3xl lg:text-4xl font-montserrat font-bold leading-tight mb-2 px-2">
<span class="text-brand-700 rotation-title fade transition-opacity duration-700 opacity-10" id="rotation-title">For Content Creators & Editors</span>
</p>
<p class="text-lg sm:text-xl md:text-2xl lg:text-3xl font-inter font-semibold text-gray-700 rotation-tagline fade mb-2 transition-opacity duration-700 opacity-10" id="rotation-tagline">WYSIWYG Editing. Visual Page Building.</p>
<br>
<button id="rotation-learnmore-btn" class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-3 rounded-full transition-opacity duration-700 opacity-10">
Click to learn more
</button>
</div>
<p class="text-base sm:text-lg lg:text-xl font-inter font-medium text-brand-950 leading-relaxed mb-8 lg:mb-12 max-w-4xl mx-auto mt-6">
No Build Pipeline · Free for self-hosting · Multi-cloud deployment
</p>
<div class="flex flex-wrap justify-center gap-4 mb-8">
<a href="#get-started" class="inline-flex items-center px-6 py-3 bg-brand-600 text-white font-semibold rounded-lg hover:bg-brand-700 transition-colors">Launch
Free</a>
<a href="#demo" class="inline-flex items-center px-6 py-3 bg-white border border-gray-200 text-gray-700 font-semibold rounded-lg hover:bg-gray-50 transition-colors">View
Demo</a>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section class="py-16 lg:py-24 bg-white mx-auto px-4 sm:px-6 lg:px-28" id="features">
<h2 class="text-3xl lg:text-4xl font-montserrat font-semibold text-gray-950 mb-4">Why Teams Switch to SkyCMS</h2>
<p class="text-gray-500 font-inter text-base mb-8">Static speed, CMS simplicity, and edge delivery—without Git, CI/CD,
or build tools.</p>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<div class="bg-gray-50 rounded-2xl p-6 border border-gray-200">
<h3 class="text-lg font-semibold text-gray-950 mb-2">No Build Pipelines</h3>
<p class="text-gray-500">Publisher renders and deploys directly—skip Git-based SSG builds and long queues.</p>
</div>
<div class="bg-gray-50 rounded-2xl p-6 border border-gray-200">
<h3 class="text-lg font-semibold text-gray-950 mb-2">Editor-Friendly</h3>
<p class="text-gray-500">CKEditor 5 and GrapesJS deliver WYSIWYG + visual page building; zero code required.</p>
</div>
<div class="bg-gray-50 rounded-2xl p-6 border border-gray-200">
<h3 class="text-lg font-semibold text-gray-950 mb-2">Developer-Ready</h3>
<p class="text-gray-500">Monaco code editor, templates, and hybrid static/dynamic modes for custom work.</p>
</div>
<div class="bg-gray-50 rounded-2xl p-6 border border-gray-200">
<h3 class="text-lg font-semibold text-gray-950 mb-2">Edge Performance</h3>
<p class="text-gray-500">Origin-less static hosting on Cloudflare R2 + Rules; sub-second global delivery.</p>
</div>
<div class="bg-gray-50 rounded-2xl p-6 border border-gray-200">
<h3 class="text-lg font-semibold text-gray-950 mb-2">Multi-Cloud</h3>
<p class="text-gray-500">Deploy to Azure Blob, S3/R2, or any S3-compatible storage; no lock-in.</p>
</div>
<div class="bg-gray-50 rounded-2xl p-6 border border-gray-200">
<h3 class="text-lg font-semibold text-gray-950 mb-2">Versioned & Instant</h3>
<p class="text-gray-500">Built-in versioning, scheduling, and instant rollback—publish in seconds.</p>
</div>
</div>
</section>
<section class="py-16 lg:py-24 bg-white mx-auto px-4 sm:px-6 lg:px-28" id="modes">
<h2 class="text-3xl lg:text-4xl font-montserrat font-semibold text-gray-950 mb-4">Choose Your Mode</h2>
<p class="text-gray-500 font-inter text-base mb-8">Static for speed, dynamic when needed, decoupled for flexibility,
optional API for headless.</p>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
<div class="bg-gray-50 rounded-2xl p-6 border border-gray-200">
<h3 class="text-lg font-semibold text-gray-950 mb-2">Static (Primary)</h3>
<p class="text-gray-500">Automatic static generation, edge-hosted, CDN-first delivery.</p>
</div>
<div class="bg-gray-50 rounded-2xl p-6 border border-gray-200">
<h3 class="text-lg font-semibold text-gray-950 mb-2">Dynamic</h3>
<p class="text-gray-500">Server-rendered pages from the Publisher app when real-time data matters.</p>
</div>
<div class="bg-gray-50 rounded-2xl p-6 border border-gray-200">
<h3 class="text-lg font-semibold text-gray-950 mb-2">Decoupled</h3>
<p class="text-gray-500">Editor and Publisher separated for near-static speed with backend capability.</p>
</div>
<div class="bg-gray-50 rounded-2xl p-6 border border-gray-200">
<h3 class="text-lg font-semibold text-gray-950 mb-2">API Optional</h3>
<p class="text-gray-500">REST API for headless distribution when you need structured content delivery.</p>
</div>
</div>
</section>
<section class="py-16 lg:py-24 bg-white mx-auto px-4 sm:px-6 lg:px-28" id="proof">
<h2 class="text-3xl lg:text-4xl font-montserrat font-semibold text-gray-950 mb-4">Real-World Impact</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
<div class="bg-gray-50 rounded-2xl p-6 border border-gray-200">
<h3 class="text-lg font-semibold text-gray-950 mb-2">< 5s Publish</h3>
<p class="text-gray-500">Single page updates go live in seconds—no queueing builds.</p>
</div>
<div class="bg-gray-50 rounded-2xl p-6 border border-gray-200">
<h3 class="text-lg font-semibold text-gray-950 mb-2">Pipeline-Free</h3>
<p class="text-gray-500">No Git repo required for content; versioning is built into the CMS.</p>
</div>
<div class="bg-gray-50 rounded-2xl p-6 border border-gray-200">
<h3 class="text-lg font-semibold text-gray-950 mb-2">Edge-Delivered</h3>
<p class="text-gray-500">Origin-less hosting handles global spikes without scaling servers.</p>
</div>
<div class="bg-gray-50 rounded-2xl p-6 border border-gray-200">
<h3 class="text-lg font-semibold text-gray-950 mb-2">Lower Cost</h3>
<p class="text-gray-500">Static assets on object storage + CDN keeps infra lean.</p>
</div>
</div>
</section>
<section class="py-16 lg:py-24 bg-white mx-auto px-4 sm:px-6 lg:px-28" id="performance">
<h2 class="text-3xl lg:text-4xl font-montserrat font-semibold text-gray-950 mb-4">Built for Demanding Scenarios</h2>
<p class="text-gray-500 font-inter text-base mb-8">SkyCMS powers high-performance publishing for teams with diverse
needs—from content-heavy publishers to global enterprises.</p>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<div class="bg-gray-50 rounded-2xl p-6 border border-gray-200">
<h3 class="text-lg font-semibold text-gray-950 mb-2">🏢 High-Traffic Websites</h3>
<p class="text-gray-500">News portals, government sites, e-commerce—handle millions of page views without scaling
server costs.</p>
</div>
<div class="bg-gray-50 rounded-2xl p-6 border border-gray-200">
<h3 class="text-lg font-semibold text-gray-950 mb-2">🌍 Global Organizations</h3>
<p class="text-gray-500">Multi-regional content delivery with edge-native hosting ensures sub-second load times
worldwide.</p>
</div>
<div class="bg-gray-50 rounded-2xl p-6 border border-gray-200">
<h3 class="text-lg font-semibold text-gray-950 mb-2">👨💻 Development Teams</h3>
<p class="text-gray-500">CI/CD integration and developer-friendly workflows for teams that need customization and
control.</p>
</div>
<div class="bg-gray-50 rounded-2xl p-6 border border-gray-200">
<h3 class="text-lg font-semibold text-gray-950 mb-2">🏪 Agencies</h3>
<p class="text-gray-500">Multi-tenant management for multiple client sites with separate content, branding, and
deployments.</p>
</div>
<div class="bg-gray-50 rounded-2xl p-6 border border-gray-200">
<h3 class="text-lg font-semibold text-gray-950 mb-2">⚡ Performance-Critical Apps</h3>
<p class="text-gray-500">Sites where speed directly impacts revenue—SkyCMS's architecture means performance is
built-in, not optimized.</p>
</div>
<div class="bg-gray-50 rounded-2xl p-6 border border-gray-200">
<h3 class="text-lg font-semibold text-gray-950 mb-2">🔐 Secure & Compliant</h3>
<p class="text-gray-500">Multi-cloud deployment keeps you in control of data residency and regulatory compliance.
</p>
</div>
</div>
</section>
<section class="py-16 lg:py-24 bg-gray-50 mx-auto px-4 sm:px-6 lg:px-28" id="comparison">
<h2 class="text-3xl lg:text-4xl font-montserrat font-semibold text-gray-950 mb-4">Performance That Outshines
Traditional CMSs</h2>
<p class="text-gray-500 font-inter text-base mb-8">See how SkyCMS's edge-native architecture delivers measurable
advantages:</p>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-5 gap-4">
<div class="bg-white rounded-2xl p-6 border border-gray-200">
<div class="font-semibold text-gray-950 mb-3">Response Time</div>
<div class="text-2xl font-bold text-brand-600 mb-1">~50ms</div>
<div class="text-sm text-gray-500">SkyCMS (static)</div>
<div class="mt-3 pt-3 border-t border-gray-200">
<div class="text-lg font-semibold text-gray-700">500-2000ms</div>
<div class="text-sm text-gray-500">Others</div>
</div>
</div>
<div class="bg-white rounded-2xl p-6 border border-gray-200">
<div class="font-semibold text-gray-950 mb-3">Availability</div>
<div class="text-2xl font-bold text-brand-600 mb-1">99.99%</div>
<div class="text-sm text-gray-500">SkyCMS (CDN-backed)</div>
<div class="mt-3 pt-3 border-t border-gray-200">
<div class="text-lg font-semibold text-gray-700">99.5%</div>
<div class="text-sm text-gray-500">Others</div>
</div>
</div>
<div class="bg-white rounded-2xl p-6 border border-gray-200">
<div class="font-semibold text-gray-950 mb-3">Traffic Handling</div>
<div class="text-2xl font-bold text-brand-600 mb-1">Unlimited</div>
<div class="text-sm text-gray-500">SkyCMS (CDN)</div>
<div class="mt-3 pt-3 border-t border-gray-200">
<div class="text-lg font-semibold text-gray-700">Limited by server</div>
<div class="text-sm text-gray-500">Others</div>
</div>
</div>
<div class="bg-white rounded-2xl p-6 border border-gray-200">
<div class="font-semibold text-gray-950 mb-3">Maintenance</div>
<div class="text-2xl font-bold text-brand-600 mb-1">Minimal</div>
<div class="text-sm text-gray-500">SkyCMS</div>
<div class="mt-3 pt-3 border-t border-gray-200">
<div class="text-lg font-semibold text-gray-700">High</div>
<div class="text-sm text-gray-500">Others</div>
</div>
</div>
<div class="bg-white rounded-2xl p-6 border border-gray-200">
<div class="font-semibold text-gray-950 mb-3">Scaling Cost</div>
<div class="text-2xl font-bold text-brand-600 mb-1">Linear</div>
<div class="text-sm text-gray-500">SkyCMS</div>
<div class="mt-3 pt-3 border-t border-gray-200">
<div class="text-lg font-semibold text-gray-700">Exponential</div>
<div class="text-sm text-gray-500">Others</div>
</div>
</div>
</div>
</section>
<section class="py-16 lg:py-24 bg-white mx-auto px-4 sm:px-6 lg:px-28" id="getting-started">
<h2 class="text-3xl lg:text-4xl font-montserrat font-semibold text-gray-950 mb-4">Getting Started is Simple</h2>
<p class="text-gray-500 font-inter text-base mb-8">Three compelling reasons why teams choose SkyCMS:</p>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6">
<div class="bg-gray-50 rounded-2xl p-8 border border-gray-200">
<div class="text-4xl mb-4">⚡</div>
<h3 class="text-xl font-semibold text-gray-950 mb-3">Deploy in Minutes</h3>
<p class="text-gray-500 mb-4">Launch CloudFormation stack, fill parameters, and deploy. No complex setup required.
</p>
<ul class="text-gray-500 text-sm space-y-2 list-disc pl-5">
<li>1-click deployment options</li>
<li>AWS, Azure, or self-hosted</li>
<li>Pre-configured infrastructure</li>
</ul>
</div>
<div class="bg-gray-50 rounded-2xl p-8 border border-gray-200">
<div class="text-4xl mb-4">📚</div>
<h3 class="text-xl font-semibold text-gray-950 mb-3">No Learning Curve</h3>
<p class="text-gray-500 mb-4">Whether you're a content creator, developer, or admin—you already know how to use
SkyCMS.</p>
<ul class="text-gray-500 text-sm space-y-2 list-disc pl-5">
<li><strong class="text-gray-700">Content Creators:</strong> If you can use Word or Google Docs, you can use
SkyCMS</li>
<li><strong class="text-gray-700">Developers:</strong> Standard HTML, CSS, JavaScript knowledge is all you need
</li>
<li><strong class="text-gray-700">Administrators:</strong> Basic cloud knowledge gets you running</li>
</ul>
</div>
<div class="bg-gray-50 rounded-2xl p-8 border border-gray-200">
<div class="text-4xl mb-4">💰</div>
<h3 class="text-xl font-semibold text-gray-950 mb-3">Cost-Effective from Day One</h3>
<p class="text-gray-500 mb-4">Open source, efficient architecture, and pay-as-you-go pricing.</p>
<ul class="text-gray-500 text-sm space-y-2 list-disc pl-5">
<li>GPL v3 license—no licensing fees</li>
<li>Lower hosting costs via optimized architecture</li>
<li>Pay only for what you use, scale seamlessly</li>
</ul>
</div>
</div>
</section>
<section class="py-16 lg:py-24 bg-gray-50 mx-auto px-4 sm:px-6 lg:px-28" id="tools">
<h2 class="text-3xl lg:text-4xl font-montserrat font-semibold text-gray-950 mb-4">Professional Tools, Built-In</h2>
<p class="text-gray-500 font-inter text-base mb-8">Complete editing and development toolkit—no plugins, no
compromises.</p>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
<div class="bg-white rounded-2xl p-6 border border-gray-200 text-center hover:shadow-lg transition-shadow">
<div class="text-4xl mb-4">✍️</div>
<h3 class="text-lg font-semibold text-gray-950 mb-2">CKEditor 5</h3>
<p class="text-gray-500 text-sm">Word-like experience for content creators. Familiar, intuitive, powerful.</p>
</div>
<div class="bg-white rounded-2xl p-6 border border-gray-200 text-center hover:shadow-lg transition-shadow">
<div class="text-4xl mb-4">🎨</div>
<h3 class="text-lg font-semibold text-gray-950 mb-2">GrapesJS</h3>
<p class="text-gray-500 text-sm">Drag & drop visual page building. Create stunning layouts without code.</p>
</div>
<div class="bg-white rounded-2xl p-6 border border-gray-200 text-center hover:shadow-lg transition-shadow">
<div class="text-4xl mb-4">💻</div>
<h3 class="text-lg font-semibold text-gray-950 mb-2">Monaco Editor</h3>
<p class="text-gray-500 text-sm">VS Code experience for developers. Advanced customization at your fingertips.</p>
</div>
<div class="bg-white rounded-2xl p-6 border border-gray-200 text-center hover:shadow-lg transition-shadow">
<div class="text-4xl mb-4">🖼️</div>
<h3 class="text-lg font-semibold text-gray-950 mb-2">Filerobot</h3>
<p class="text-gray-500 text-sm">Edit images directly in the CMS. Crop, resize, optimize without leaving SkyCMS.
</p>
</div>
</div>
</section>
<section class="py-16 lg:py-24 bg-white mx-auto px-4 sm:px-6 lg:px-28" id="pricing">
<h2 class="text-3xl lg:text-4xl font-montserrat font-semibold text-gray-950 mb-4">Pricing & Plans</h2>
<p class="text-gray-500 font-inter text-base mb-8">Choose the plan that fits your needs. Free self-hosting, or managed
plans with professional support.</p>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-gray-50 rounded-2xl p-8 border border-gray-200">
<h3 class="text-xl font-semibold text-gray-950 mb-2">Free</h3>
<p class="text-3xl font-bold text-brand-600 mb-1">$0</p>
<p class="text-gray-500 text-sm mb-6">Self-hosted, open source</p>
<ul class="text-gray-500 text-sm space-y-3 mb-6">
<li>✓ Unlimited pages & content</li>
<li>✓ Multi-cloud deployment</li>
<li>✓ All editing tools included</li>
<li>✓ Community support</li>
<li class="text-gray-400">✗ No managed hosting</li>
<li class="text-gray-400">✗ No priority support</li>
</ul>
<a href="#" class="block w-full text-center px-6 py-3 bg-white border border-gray-200 text-gray-700 font-semibold rounded-lg hover:bg-gray-50 transition-colors">Get
Started</a>
</div>
<div class="bg-brand-50 rounded-2xl p-8 border-2 border-brand-600 relative">
<span class="absolute -top-3 left-8 bg-brand-600 text-white text-xs font-bold px-3 py-1 rounded-full">Most Popular</span>
<h3 class="text-xl font-semibold text-gray-950 mb-2">Professional</h3>
<p class="text-3xl font-bold text-brand-600 mb-1">$25<span class="text-lg font-normal text-gray-500">/month</span>
</p>
<p class="text-gray-500 text-sm mb-6">Managed hosting included</p>
<ul class="text-gray-500 text-sm space-y-3 mb-6">
<li>✓ 50 GB storage (files + database)</li>
<li>✓ Origin-less edge hosting (Cloudflare)</li>
<li>✓ Custom domain + TLS/SSL</li>
<li>✓ Cloudflare WAF/CDN/DDoS</li>
<li>✓ Database backups</li>
<li>✓ Priority email support</li>
<li>✓ Single sign-on (Google, Microsoft)</li>
</ul>
<a href="#" class="block w-full text-center px-6 py-3 bg-brand-600 text-white font-semibold rounded-lg hover:bg-brand-700 transition-colors">Subscribe</a>
</div>
<div class="bg-gray-50 rounded-2xl p-8 border border-gray-200">
<h3 class="text-xl font-semibold text-gray-950 mb-2">Enterprise</h3>
<p class="text-3xl font-bold text-brand-600 mb-1">Custom</p>
<p class="text-gray-500 text-sm mb-6">Unlimited scale, dedicated support</p>
<ul class="text-gray-500 text-sm space-y-3 mb-6">
<li>✓ Unlimited storage</li>
<li>✓ Multi-tenant management</li>
<li>✓ Custom integrations</li>
<li>✓ SLA guarantees</li>
<li>✓ Dedicated account manager</li>
<li>✓ Phone + email support</li>
</ul>
<a href="#" class="block w-full text-center px-6 py-3 bg-white border border-gray-200 text-gray-700 font-semibold rounded-lg hover:bg-gray-50 transition-colors">Contact
Sales</a>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-16 lg:py-24 bg-brand-50 mx-auto px-4 sm:px-6 lg:px-28" id="final-cta">
<div class="text-center max-w-3xl mx-auto">
<h2 class="text-3xl lg:text-4xl font-montserrat font-semibold text-gray-950 mb-4">Design without code. Create
without limits.</h2>
<p class="text-gray-500 font-inter text-lg mb-8">Join teams building faster, publishing simpler, and scaling smarter
with SkyCMS.</p>
<div class="flex flex-wrap justify-center gap-4">
<a href="#" class="inline-flex items-center px-8 py-4 bg-brand-600 text-white font-semibold rounded-lg hover:bg-brand-700 transition-colors">Get
Started Free</a>
<a href="#" class="inline-flex items-center px-8 py-4 bg-white border border-gray-200 text-gray-700 font-semibold rounded-lg hover:bg-gray-50 transition-colors">Schedule
a Demo</a>
</div>
</div>
</section>
<!-- Footer -->
<footer
class="relative bg-white border-gray-200 mx-auto px-4 sm:px-6 lg:px-8 py-12 mb-9 overflow-hidden"
>
<!-- Background Image with proper spacing -->
<div
class="absolute inset-0 mt-8 mx-4 lg:mx-9 rounded-2xl"
style="
background-image: url('/pub/articles/1/HeroBackground.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
"
></div>
<div class="relative">
<!-- Main Footer Content -->
<div class="text-center mb-8 mt-9">
<!-- Logo -->
<div class="flex items-center justify-center space-x-3 mb-8">
<div class="h-8 w-8 flex-shrink-0">
<img
src="assets/images/logomark.svg"
alt="SkyCMS Logo"
class="h-8 w-8"
/>
</div>
<span class="font-inter font-bold text-lg text-gray-950"
>SKY CMS</span
>
</div>
<!-- Footer Links -->
<div class="flex flex-wrap justify-center gap-6 lg:gap-8 mb-8">
<a
href="#overview"
class="text-gray-950 hover:text-gray-900 font-semibold"
>Overview</a
>
<a
href="#features"
class="text-gray-950 hover:text-gray-900 font-semibold"
>Features</a
>
<a
href="#pricing"
class="text-gray-950 hover:text-gray-900 font-semibold"
>Pricing</a
>
<a
href="#careers"
class="text-gray-950 hover:text-gray-900 font-semibold"
>Careers</a
>
<a
href="#help"
class="text-gray-950 hover:text-gray-900 font-semibold"
>Help</a
>
<a
href="#privacy"
class="text-gray-950 hover:text-gray-900 font-semibold"
>Privacy</a
>
</div>
</div>
<!-- Bottom Footer -->
<div class="border-t border-gray-950 pt-8 mx-28">
<div
class="flex flex-col sm:flex-row justify-between items-center gap-4"
>
<p class="text-gray-950 font-inter">
© 2024 SkyCMS. All rights reserved.
</p>
<div class="flex space-x-6">
<a
href="#terms"
class="text-gray-950 hover:text-gray-900 font-inter"
>Terms</a
>
<a
href="#privacy"
class="text-gray-950 hover:text-gray-900 font-inter"
>Privacy</a
>
<a
href="#cookies"
class="text-gray-950 hover:text-gray-900 font-inter"
>Cookies</a
>
</div>
</div>
</div>
</div>
</footer>
<!-- Mobile Menu (Hidden by default) -->
<div id="mobile-menu" class="hidden lg:hidden">
<div class="fixed top-16 left-0 right-0 z-40 mx-3 sm:mx-4">
<div class="bg-white rounded-2xl border border-gray-200 shadow-lg p-4">
<nav class="space-y-3">
<a
href="#about"
class="block py-3 px-4 text-gray-700 hover:text-gray-900 hover:bg-gray-50 rounded-lg font-medium transition-colors"
>About</a
>
<a
href="#our-competition"
class="block py-3 px-4 text-gray-700 hover:text-gray-900 hover:bg-gray-50 rounded-lg font-medium transition-colors"
>Our competition</a
>
<a
href="#features"
class="block py-3 px-4 text-gray-700 hover:text-gray-900 hover:bg-gray-50 rounded-lg font-medium transition-colors"
>Features</a
>
<a
href="#pricing"
class="block py-3 px-4 text-gray-700 hover:text-gray-900 hover:bg-gray-50 rounded-lg font-medium transition-colors"
>Pricing</a
>
</nav>
</div>
</div>
</div>
<script>
function toggleMobileMenu() {
const menu = document.getElementById("mobile-menu");
menu.classList.toggle("hidden");
}
// Close mobile menu when clicking outside
document.addEventListener("click", function (event) {
const menu = document.getElementById("mobile-menu");
const menuButton = event.target.closest(
'[onclick="toggleMobileMenu()"]'
);
const menuContent = event.target.closest("#mobile-menu");
if (!menuButton && !menuContent && !menu.classList.contains("hidden")) {
menu.classList.add("hidden");
}
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach((anchor) => {
anchor.addEventListener("click", function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute("href"));
if (target) {
target.scrollIntoView({
behavior: "smooth",
block: "start",
});
}
});
});
// Close mobile menu when clicking on navigation links
document.querySelectorAll("#mobile-menu a").forEach((link) => {
link.addEventListener("click", function () {
toggleMobileMenu();
});
});
// Performance Section Scroll Animation
function initPerformanceAnimation() {
const performanceElements = document.querySelectorAll(
".performance-content, .performance-text, .performance-image, .blue-card, .blue-card-text, .blue-card-visual"
);
const observer = new IntersectionObserver(
(entries) => {
entries.forEach((entry) => {
if (entry.isIntersecting) {
entry.target.classList.add("animate");
observer.unobserve(entry.target);
}
});
},
{
threshold: 0.1,
rootMargin: "0px 0px -50px 0px",
}
);
performanceElements.forEach((element) => {
observer.observe(element);
});
}
// Demanding Scenarios Section Scroll Animation
function initScenariosAnimation() {
const scenarioElements = document.querySelectorAll(
".scenarios-title, .scenario-card"
);
const observer = new IntersectionObserver(
(entries) => {
entries.forEach((entry) => {
if (entry.isIntersecting) {
entry.target.classList.add("animate");
observer.unobserve(entry.target);
}
});
},
{
threshold: 0.1,
rootMargin: "0px 0px -50px 0px",
}
);
scenarioElements.forEach((element) => {
observer.observe(element);
});
}
// Competition Section Scroll Animation
function initCompetitionAnimation() {
const competitionSection = document.querySelector(
".competition-section"
);
const observer = new IntersectionObserver(
(entries) => {
entries.forEach((entry) => {
if (entry.isIntersecting) {
entry.target.classList.add("animate");
observer.unobserve(entry.target);
}
});
},
{
threshold: 0.1,
rootMargin: "0px 0px -50px 0px",
}
);
if (competitionSection) {
observer.observe(competitionSection);
}
}
// Pricing Section Scroll Animation
function initPricingAnimation() {