@remotion/promo-pages 4.0.486 → 4.0.488
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Homepage.css +1 -1
- package/dist/Homepage.js +1147 -2270
- package/dist/components/Homepage.js +21 -5
- package/dist/components/homepage/CanvasSectionTitle.d.ts +4 -0
- package/dist/components/homepage/CanvasSectionTitle.js +14 -0
- package/dist/components/homepage/CommunityStatsItems.js +2 -2
- package/dist/components/homepage/Demo/DemoRender.d.ts +1 -1
- package/dist/components/homepage/Demo/DisplayedEmoji.js +3 -5
- package/dist/components/homepage/Demo/math.d.ts +1 -1
- package/dist/components/homepage/EditorStarterSection.d.ts +3 -0
- package/dist/components/homepage/EditorStarterSection.js +8 -0
- package/dist/components/homepage/GitHubButton.js +1 -1
- package/dist/components/homepage/MakeVideosAgentically.d.ts +10 -0
- package/dist/components/homepage/MakeVideosAgentically.js +37 -0
- package/dist/components/homepage/MakeVideosInteractively.d.ts +9 -0
- package/dist/components/homepage/MakeVideosInteractively.js +16 -0
- package/dist/components/homepage/MakeVideosLinks.d.ts +9 -0
- package/dist/components/homepage/MakeVideosLinks.js +17 -0
- package/dist/components/homepage/MakeVideosProgrammatically.d.ts +9 -0
- package/dist/components/homepage/MakeVideosProgrammatically.js +8 -0
- package/dist/components/homepage/Pricing.d.ts +1 -3
- package/dist/components/homepage/Pricing.js +2 -6
- package/dist/components/homepage/WriteInReact.js +1 -2
- package/dist/components/team/TrustSection.js +1 -1
- package/dist/design.js +241 -130
- package/dist/experts.js +230 -119
- package/dist/homepage/Pricing.js +255 -128
- package/dist/prompts/PromptsGallery.js +241 -130
- package/dist/prompts/PromptsShow.js +247 -136
- package/dist/prompts/PromptsSubmit.js +232 -121
- package/dist/tailwind.css +21 -3
- package/dist/team.js +232 -121
- package/dist/template-modal-content.css +1 -1
- package/dist/template-modal-content.js +238 -127
- package/dist/templates.js +232 -121
- package/package.json +17 -17
- package/public/img/editing-safari.mp4 +0 -0
- package/public/img/editing-vp9-chrome.webm +0 -0
- package/public/img/homepage-assets-master.mp4 +0 -0
- package/public/img/homepage-assets-master.webm +0 -0
- package/public/img/what-is-remotion.mp4 +0 -0
- package/public/img/what-is-remotion.webm +0 -0
package/dist/tailwind.css
CHANGED
|
@@ -341,6 +341,9 @@
|
|
|
341
341
|
.field-sizing-content {
|
|
342
342
|
field-sizing: content;
|
|
343
343
|
}
|
|
344
|
+
.aspect-square {
|
|
345
|
+
aspect-ratio: 1 / 1;
|
|
346
|
+
}
|
|
344
347
|
.aspect-video {
|
|
345
348
|
aspect-ratio: var(--aspect-video);
|
|
346
349
|
}
|
|
@@ -439,6 +442,9 @@
|
|
|
439
442
|
.max-h-\[110px\] {
|
|
440
443
|
max-height: 110px;
|
|
441
444
|
}
|
|
445
|
+
.max-h-full {
|
|
446
|
+
max-height: 100%;
|
|
447
|
+
}
|
|
442
448
|
.min-h-\[80px\] {
|
|
443
449
|
min-height: 80px;
|
|
444
450
|
}
|
|
@@ -556,6 +562,9 @@
|
|
|
556
562
|
.max-w-\[1200px\] {
|
|
557
563
|
max-width: 1200px;
|
|
558
564
|
}
|
|
565
|
+
.max-w-full {
|
|
566
|
+
max-width: 100%;
|
|
567
|
+
}
|
|
559
568
|
.min-w-\(--radix-select-trigger-width\) {
|
|
560
569
|
min-width: var(--radix-select-trigger-width);
|
|
561
570
|
}
|
|
@@ -583,6 +592,9 @@
|
|
|
583
592
|
.shrink-0 {
|
|
584
593
|
flex-shrink: 0;
|
|
585
594
|
}
|
|
595
|
+
.basis-0 {
|
|
596
|
+
flex-basis: calc(var(--spacing) * 0);
|
|
597
|
+
}
|
|
586
598
|
.-translate-x-1\/2 {
|
|
587
599
|
--tw-translate-x: calc(calc(1 / 2 * 100%) * -1);
|
|
588
600
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -951,9 +963,6 @@
|
|
|
951
963
|
.py-1\.5 {
|
|
952
964
|
padding-block: calc(var(--spacing) * 1.5);
|
|
953
965
|
}
|
|
954
|
-
.py-2 {
|
|
955
|
-
padding-block: calc(var(--spacing) * 2);
|
|
956
|
-
}
|
|
957
966
|
.py-3 {
|
|
958
967
|
padding-block: calc(var(--spacing) * 3);
|
|
959
968
|
}
|
|
@@ -1104,6 +1113,10 @@
|
|
|
1104
1113
|
--tw-leading: calc(var(--spacing) * 6);
|
|
1105
1114
|
line-height: calc(var(--spacing) * 6);
|
|
1106
1115
|
}
|
|
1116
|
+
.leading-\[1\.1\] {
|
|
1117
|
+
--tw-leading: 1.1;
|
|
1118
|
+
line-height: 1.1;
|
|
1119
|
+
}
|
|
1107
1120
|
.leading-none {
|
|
1108
1121
|
--tw-leading: 1;
|
|
1109
1122
|
line-height: 1;
|
|
@@ -1580,6 +1593,11 @@
|
|
|
1580
1593
|
line-height: calc(var(--spacing) * 5);
|
|
1581
1594
|
}
|
|
1582
1595
|
}
|
|
1596
|
+
.md\:mt-6 {
|
|
1597
|
+
@media (width >= 48rem) {
|
|
1598
|
+
margin-top: calc(var(--spacing) * 6);
|
|
1599
|
+
}
|
|
1600
|
+
}
|
|
1583
1601
|
.md\:mr-6 {
|
|
1584
1602
|
@media (width >= 48rem) {
|
|
1585
1603
|
margin-right: calc(var(--spacing) * 6);
|