@remotion/promo-pages 4.0.315 → 4.0.317

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.
Files changed (43) hide show
  1. package/.turbo/turbo-make.log +2 -2
  2. package/dist/Homepage.js +11850 -12153
  3. package/dist/components/Homepage.js +4 -4
  4. package/dist/components/homepage/CommunityStats.js +1 -1
  5. package/dist/components/homepage/Counter.d.ts +1 -0
  6. package/dist/components/homepage/Counter.js +15 -7
  7. package/dist/components/homepage/Demo/DemoRender.d.ts +16 -16
  8. package/dist/components/homepage/Demo/DisplayedEmoji.js +17 -3
  9. package/dist/components/homepage/Demo/math.d.ts +1 -1
  10. package/dist/components/homepage/FreePricing.js +20 -25
  11. package/dist/components/homepage/IconForTemplate.js +4 -0
  12. package/dist/components/homepage/IfYouKnowReact.js +5 -2
  13. package/dist/components/homepage/NewsletterButton.js +3 -2
  14. package/dist/components/homepage/ParameterizeAndEdit.d.ts +2 -0
  15. package/dist/components/homepage/ParameterizeAndEdit.js +22 -0
  16. package/dist/components/homepage/RealMp4Videos.js +10 -1
  17. package/dist/components/homepage/VideoAppsShowcase.js +6 -3
  18. package/dist/components/homepage/VideoAppsTitle.d.ts +0 -1
  19. package/dist/components/homepage/VideoAppsTitle.js +1 -4
  20. package/dist/components/icons/recorder.d.ts +3 -0
  21. package/dist/components/icons/recorder.js +4 -0
  22. package/dist/homepage/Pricing.js +131 -90
  23. package/dist/tailwind.css +74 -61
  24. package/package.json +10 -10
  25. package/public/img/editing-safari.mp4 +0 -0
  26. package/public/img/editing-vp9-chrome.webm +0 -0
  27. package/src/components/Homepage.tsx +7 -13
  28. package/src/components/homepage/CommunityStats.tsx +1 -1
  29. package/src/components/homepage/Counter.tsx +17 -7
  30. package/src/components/homepage/Demo/DisplayedEmoji.tsx +22 -4
  31. package/src/components/homepage/FreePricing.tsx +88 -65
  32. package/src/components/homepage/IconForTemplate.tsx +5 -0
  33. package/src/components/homepage/IfYouKnowReact.tsx +26 -14
  34. package/src/components/homepage/NewsletterButton.tsx +5 -4
  35. package/src/components/homepage/ParameterizeAndEdit.tsx +89 -0
  36. package/src/components/homepage/RealMp4Videos.tsx +55 -13
  37. package/src/components/homepage/VideoAppsShowcase.tsx +21 -10
  38. package/src/components/homepage/VideoAppsTitle.tsx +0 -13
  39. package/src/components/icons/recorder.tsx +23 -0
  40. package/dist/components/homepage/Editor.d.ts +0 -2
  41. package/dist/components/homepage/Editor.js +0 -37
  42. package/public/img/player-demo.mp4 +0 -0
  43. package/src/components/homepage/Editor.tsx +0 -67
@@ -1,3 +1,14 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __export = (target, all) => {
3
+ for (var name in all)
4
+ __defProp(target, name, {
5
+ get: all[name],
6
+ enumerable: true,
7
+ configurable: true,
8
+ set: (newValue) => all[name] = () => newValue
9
+ });
10
+ };
11
+ var __esm = (fn, res) => () => (fn && (res = fn(fn = 0)), res);
1
12
  var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, {
2
13
  get: (a, b) => (typeof require !== "undefined" ? require : a)[b]
3
14
  }) : x)(function(x) {
@@ -1384,32 +1395,39 @@ var buttonContainer = {
1384
1395
  var Counter = ({
1385
1396
  count,
1386
1397
  setCount,
1387
- minCount = 0
1398
+ minCount = 0,
1399
+ step = 1
1388
1400
  }) => {
1389
1401
  const decrement = () => {
1390
1402
  if (count > minCount) {
1391
- setCount(count - 1);
1403
+ setCount(Math.max(minCount, count - step));
1392
1404
  }
1393
1405
  };
1394
1406
  const increment = () => {
1395
- setCount(count + 1);
1407
+ setCount(count + step);
1396
1408
  };
1397
1409
  return /* @__PURE__ */ jsxs("div", {
1398
1410
  style: container,
1399
- className: cn("border-effect w-[110px] text-text"),
1411
+ className: cn("border-effect w-[140px] text-text"),
1400
1412
  children: [
1401
1413
  /* @__PURE__ */ jsx("input", {
1402
- className: "fontbrand text-2xl font-medium min-w-[60px] border-0 text-end bg-transparent outline-0 text-text",
1414
+ className: "fontbrand text-2xl font-medium min-w-[80px] border-0 text-end bg-transparent outline-0 text-text",
1403
1415
  type: "number",
1404
1416
  onClick: (e) => e.currentTarget.select(),
1405
1417
  value: count,
1406
1418
  onChange: (e) => {
1407
1419
  if (e.target.value.trim() === "") {
1408
- setCount(1);
1420
+ setCount(step === 1 ? 1 : minCount);
1409
1421
  return;
1410
1422
  }
1411
- const max = Math.max(parseInt(e.target.value, 10), 1);
1412
- setCount(max);
1423
+ const inputValue = parseInt(e.target.value, 10);
1424
+ const validValue = Math.max(inputValue, minCount);
1425
+ if (step > 1) {
1426
+ const roundedValue = Math.round(validValue / step) * step;
1427
+ setCount(Math.max(roundedValue, minCount));
1428
+ } else {
1429
+ setCount(validValue);
1430
+ }
1413
1431
  }
1414
1432
  }),
1415
1433
  /* @__PURE__ */ jsxs("div", {
@@ -1565,7 +1583,7 @@ var PriceTag = ({ children }) => {
1565
1583
  };
1566
1584
  var SmallPriceTag = ({ children }) => {
1567
1585
  return /* @__PURE__ */ jsx4("div", {
1568
- className: "fontbrand text-2xl font-medium w-auto min-w-[80px] text-right shrink-0 ml-4",
1586
+ className: "fontbrand text-2xl font-medium w-auto min-w-[80px] text-right shrink-0",
1569
1587
  children
1570
1588
  });
1571
1589
  };
@@ -1666,10 +1684,14 @@ var EnterpriseLicense = () => {
1666
1684
  var SEAT_PRICE = 25;
1667
1685
  var RENDER_UNIT_PRICE = 10;
1668
1686
  var WEBCODECS_UNIT_PRICE = 10;
1687
+ var icon = {
1688
+ height: 16,
1689
+ marginLeft: 4
1690
+ };
1669
1691
  var CompanyPricing = () => {
1670
1692
  const [devSeatCount, setDevSeatCount] = React2.useState(1);
1671
- const [cloudUnitCount, setCloudUnitCount] = React2.useState(1);
1672
- const [webcodecsUnits, setWebcodecsUnits] = React2.useState(1);
1693
+ const [cloudRenders, setCloudRenders] = React2.useState(1000);
1694
+ const [creations, setCreations] = React2.useState(1000);
1673
1695
  const formatPrice = useCallback((price) => {
1674
1696
  const formatter = new Intl.NumberFormat("en-US", {
1675
1697
  style: "currency",
@@ -1679,23 +1701,11 @@ var CompanyPricing = () => {
1679
1701
  return formatter.format(price);
1680
1702
  }, []);
1681
1703
  const totalPrice = useMemo(() => {
1682
- return Math.max(100, devSeatCount * SEAT_PRICE + cloudUnitCount * RENDER_UNIT_PRICE + webcodecsUnits * WEBCODECS_UNIT_PRICE);
1683
- }, [cloudUnitCount, devSeatCount, webcodecsUnits]);
1704
+ return Math.max(100, devSeatCount * SEAT_PRICE + cloudRenders / 1000 * RENDER_UNIT_PRICE + creations / 1000 * WEBCODECS_UNIT_PRICE);
1705
+ }, [cloudRenders, devSeatCount, creations]);
1684
1706
  const totalPriceString = useMemo(() => {
1685
1707
  return formatPrice(totalPrice);
1686
1708
  }, [formatPrice, totalPrice]);
1687
- const rendersPerMonth = useMemo(() => {
1688
- const formatter = new Intl.NumberFormat("en-US", {
1689
- maximumFractionDigits: 0
1690
- });
1691
- return formatter.format(cloudUnitCount * 1000);
1692
- }, [cloudUnitCount]);
1693
- const conversionsPerMonth = useMemo(() => {
1694
- const formatter = new Intl.NumberFormat("en-US", {
1695
- maximumFractionDigits: 0
1696
- });
1697
- return formatter.format(webcodecsUnits * 1000);
1698
- }, [webcodecsUnits]);
1699
1709
  return /* @__PURE__ */ jsxs4(Container, {
1700
1710
  children: [
1701
1711
  /* @__PURE__ */ jsx4(Audience, {
@@ -1727,7 +1737,7 @@ var CompanyPricing = () => {
1727
1737
  style: { height: 30 }
1728
1738
  }),
1729
1739
  /* @__PURE__ */ jsxs4("div", {
1730
- className: "flex flex-row items-center",
1740
+ className: "flex flex-col md:flex-row md:items-center",
1731
1741
  children: [
1732
1742
  /* @__PURE__ */ jsxs4("div", {
1733
1743
  style: textUnitWrapper,
@@ -1743,19 +1753,25 @@ var CompanyPricing = () => {
1743
1753
  ]
1744
1754
  }),
1745
1755
  /* @__PURE__ */ jsx4("div", {
1746
- style: { flex: 3 }
1747
- }),
1748
- /* @__PURE__ */ jsx4(Counter, {
1749
- count: devSeatCount,
1750
- setCount: setDevSeatCount,
1751
- minCount: 1
1756
+ style: { flex: 3 },
1757
+ className: "hidden md:block"
1752
1758
  }),
1753
- /* @__PURE__ */ jsxs4(SmallPriceTag, {
1759
+ /* @__PURE__ */ jsxs4("div", {
1760
+ className: "flex flex-row items-center justify-between mt-3 md:mt-0",
1754
1761
  children: [
1755
- "$",
1756
- new Intl.NumberFormat("en-US", {
1757
- maximumFractionDigits: 0
1758
- }).format(SEAT_PRICE * devSeatCount)
1762
+ /* @__PURE__ */ jsx4(Counter, {
1763
+ count: devSeatCount,
1764
+ setCount: setDevSeatCount,
1765
+ minCount: 1
1766
+ }),
1767
+ /* @__PURE__ */ jsxs4(SmallPriceTag, {
1768
+ children: [
1769
+ "$",
1770
+ new Intl.NumberFormat("en-US", {
1771
+ maximumFractionDigits: 0
1772
+ }).format(SEAT_PRICE * devSeatCount)
1773
+ ]
1774
+ })
1759
1775
  ]
1760
1776
  })
1761
1777
  ]
@@ -1764,46 +1780,46 @@ var CompanyPricing = () => {
1764
1780
  style: { height: 14 }
1765
1781
  }),
1766
1782
  /* @__PURE__ */ jsxs4("div", {
1767
- className: "flex flex-row items-center",
1783
+ className: "flex flex-col md:flex-row md:items-center",
1768
1784
  children: [
1769
1785
  /* @__PURE__ */ jsxs4("div", {
1770
1786
  style: textUnitWrapper,
1771
1787
  children: [
1772
1788
  /* @__PURE__ */ jsx4("div", {
1773
1789
  className: "fontbrand font-bold text-lg",
1774
- children: "Cloud Rendering Units"
1790
+ children: "Server renders"
1775
1791
  }),
1776
- /* @__PURE__ */ jsxs4("div", {
1792
+ /* @__PURE__ */ jsx4("div", {
1777
1793
  className: "text-muted fontbrand text-sm",
1778
- children: [
1779
- "Allows for ",
1780
- rendersPerMonth,
1781
- " ",
1782
- /* @__PURE__ */ jsx4("a", {
1783
- href: "https://www.remotion.dev/docs/compare-ssr",
1784
- className: "underline underline-offset-4 text-inherit",
1785
- children: "self-hosted renders per month"
1786
- }),
1787
- " ",
1788
- "each"
1789
- ]
1794
+ children: /* @__PURE__ */ jsx4("a", {
1795
+ href: "https://www.remotion.dev/docs/compare-ssr",
1796
+ className: "underline underline-offset-4 text-inherit",
1797
+ children: "Renders per month (self-hosted)"
1798
+ })
1790
1799
  })
1791
1800
  ]
1792
1801
  }),
1793
1802
  /* @__PURE__ */ jsx4("div", {
1794
- style: { flex: 3 }
1795
- }),
1796
- /* @__PURE__ */ jsx4(Counter, {
1797
- count: cloudUnitCount,
1798
- setCount: setCloudUnitCount,
1799
- minCount: 0
1803
+ style: { flex: 3 },
1804
+ className: "hidden md:block"
1800
1805
  }),
1801
- /* @__PURE__ */ jsxs4(SmallPriceTag, {
1806
+ /* @__PURE__ */ jsxs4("div", {
1807
+ className: "flex flex-row items-center justify-between mt-3 md:mt-0",
1802
1808
  children: [
1803
- "$",
1804
- new Intl.NumberFormat("en-US", {
1805
- maximumFractionDigits: 0
1806
- }).format(RENDER_UNIT_PRICE * cloudUnitCount)
1809
+ /* @__PURE__ */ jsx4(Counter, {
1810
+ count: cloudRenders,
1811
+ setCount: setCloudRenders,
1812
+ minCount: 0,
1813
+ step: 1000
1814
+ }),
1815
+ /* @__PURE__ */ jsxs4(SmallPriceTag, {
1816
+ children: [
1817
+ "$",
1818
+ new Intl.NumberFormat("en-US", {
1819
+ maximumFractionDigits: 0
1820
+ }).format(cloudRenders / 1000 * RENDER_UNIT_PRICE)
1821
+ ]
1822
+ })
1807
1823
  ]
1808
1824
  })
1809
1825
  ]
@@ -1812,47 +1828,46 @@ var CompanyPricing = () => {
1812
1828
  style: { height: 14 }
1813
1829
  }),
1814
1830
  /* @__PURE__ */ jsxs4("div", {
1815
- className: "flex flex-row items-center",
1831
+ className: "flex flex-col md:flex-row md:items-center",
1816
1832
  children: [
1817
1833
  /* @__PURE__ */ jsxs4("div", {
1818
1834
  style: textUnitWrapper,
1819
1835
  children: [
1820
1836
  /* @__PURE__ */ jsx4("div", {
1821
1837
  className: "fontbrand font-bold text-lg",
1822
- children: "WebCodecs Creation Units"
1838
+ children: "WebCodecs video creations"
1823
1839
  }),
1824
- /* @__PURE__ */ jsxs4("div", {
1840
+ /* @__PURE__ */ jsx4("div", {
1825
1841
  className: "text-muted fontbrand text-sm",
1826
- children: [
1827
- "Allows for",
1828
- " ",
1829
- /* @__PURE__ */ jsxs4("a", {
1830
- className: "underline underline-offset-4 text-inherit",
1831
- href: "https://remotion.dev/webcodecs",
1832
- children: [
1833
- conversionsPerMonth,
1834
- " client-side video creations",
1835
- " "
1836
- ]
1837
- })
1838
- ]
1842
+ children: /* @__PURE__ */ jsx4("a", {
1843
+ className: "underline underline-offset-4 text-inherit",
1844
+ href: "https://remotion.dev/webcodecs",
1845
+ children: "Client-side video creations per month"
1846
+ })
1839
1847
  })
1840
1848
  ]
1841
1849
  }),
1842
1850
  /* @__PURE__ */ jsx4("div", {
1843
- style: { flex: 3 }
1844
- }),
1845
- /* @__PURE__ */ jsx4(Counter, {
1846
- count: webcodecsUnits,
1847
- setCount: setWebcodecsUnits,
1848
- minCount: 0
1851
+ style: { flex: 3 },
1852
+ className: "hidden md:block"
1849
1853
  }),
1850
- /* @__PURE__ */ jsxs4(SmallPriceTag, {
1854
+ /* @__PURE__ */ jsxs4("div", {
1855
+ className: "flex flex-row items-center justify-between mt-3 md:mt-0",
1851
1856
  children: [
1852
- "$",
1853
- new Intl.NumberFormat("en-US", {
1854
- maximumFractionDigits: 0
1855
- }).format(RENDER_UNIT_PRICE * webcodecsUnits)
1857
+ /* @__PURE__ */ jsx4(Counter, {
1858
+ count: creations,
1859
+ setCount: setCreations,
1860
+ minCount: 0,
1861
+ step: 1000
1862
+ }),
1863
+ /* @__PURE__ */ jsxs4(SmallPriceTag, {
1864
+ children: [
1865
+ "$",
1866
+ new Intl.NumberFormat("en-US", {
1867
+ maximumFractionDigits: 0
1868
+ }).format(creations / 1000 * WEBCODECS_UNIT_PRICE)
1869
+ ]
1870
+ })
1856
1871
  ]
1857
1872
  })
1858
1873
  ]
@@ -1878,6 +1893,32 @@ var CompanyPricing = () => {
1878
1893
  })
1879
1894
  ]
1880
1895
  })
1896
+ }),
1897
+ /* @__PURE__ */ jsx4("div", {
1898
+ className: "flex flex-row justify-end mt-4",
1899
+ children: /* @__PURE__ */ jsx4("div", {
1900
+ style: {
1901
+ ...textUnitWrapper,
1902
+ alignItems: "flex-end"
1903
+ },
1904
+ children: /* @__PURE__ */ jsxs4("a", {
1905
+ href: "https://remotion.pro/dashboard",
1906
+ className: "font-brand text-brand flex flex-row items-center gap-1 no-underline",
1907
+ children: [
1908
+ "Buy now",
1909
+ " ",
1910
+ /* @__PURE__ */ jsx4("svg", {
1911
+ style: icon,
1912
+ xmlns: "http://www.w3.org/2000/svg",
1913
+ viewBox: "0 0 448 512",
1914
+ children: /* @__PURE__ */ jsx4("path", {
1915
+ fill: "currentColor",
1916
+ d: "M438.6 278.6l-160 160C272.4 444.9 264.2 448 256 448s-16.38-3.125-22.62-9.375c-12.5-12.5-12.5-32.75 0-45.25L338.8 288H32C14.33 288 .0016 273.7 .0016 256S14.33 224 32 224h306.8l-105.4-105.4c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0l160 160C451.1 245.9 451.1 266.1 438.6 278.6z"
1917
+ })
1918
+ })
1919
+ ]
1920
+ })
1921
+ })
1881
1922
  })
1882
1923
  ]
1883
1924
  });
package/dist/tailwind.css CHANGED
@@ -70,6 +70,7 @@
70
70
  --font-weight-black: 900;
71
71
  --leading-snug: 1.375;
72
72
  --leading-relaxed: 1.625;
73
+ --radius-sm: 0.25rem;
73
74
  --radius-lg: 0.5rem;
74
75
  --radius-xl: 0.75rem;
75
76
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
@@ -153,32 +154,38 @@
153
154
  .-mt-2 {
154
155
  margin-top: calc(var(--spacing) * -2);
155
156
  }
156
- .-mt-10 {
157
- margin-top: calc(var(--spacing) * -10);
157
+ .-mt-4 {
158
+ margin-top: calc(var(--spacing) * -4);
158
159
  }
159
160
  .-mt-20 {
160
161
  margin-top: calc(var(--spacing) * -20);
161
162
  }
162
- .mt-1 {
163
- margin-top: calc(var(--spacing) * 1);
163
+ .mt-0 {
164
+ margin-top: calc(var(--spacing) * 0);
164
165
  }
165
166
  .mt-2 {
166
167
  margin-top: calc(var(--spacing) * 2);
167
168
  }
169
+ .mt-3 {
170
+ margin-top: calc(var(--spacing) * 3);
171
+ }
168
172
  .mt-4 {
169
173
  margin-top: calc(var(--spacing) * 4);
170
174
  }
175
+ .mt-8 {
176
+ margin-top: calc(var(--spacing) * 8);
177
+ }
171
178
  .mt-20 {
172
179
  margin-top: calc(var(--spacing) * 20);
173
180
  }
181
+ .mt-40 {
182
+ margin-top: calc(var(--spacing) * 40);
183
+ }
174
184
  .mt-\[3px\] {
175
185
  margin-top: 3px;
176
186
  }
177
- .-mb-20 {
178
- margin-bottom: calc(var(--spacing) * -20);
179
- }
180
- .-mb-50 {
181
- margin-bottom: calc(var(--spacing) * -50);
187
+ .-mb-40 {
188
+ margin-bottom: calc(var(--spacing) * -40);
182
189
  }
183
190
  .mb-4 {
184
191
  margin-bottom: calc(var(--spacing) * 4);
@@ -243,27 +250,18 @@
243
250
  .h-2 {
244
251
  height: calc(var(--spacing) * 2);
245
252
  }
253
+ .h-4 {
254
+ height: calc(var(--spacing) * 4);
255
+ }
246
256
  .h-5 {
247
257
  height: calc(var(--spacing) * 5);
248
258
  }
249
- .h-7 {
250
- height: calc(var(--spacing) * 7);
251
- }
252
259
  .h-8 {
253
260
  height: calc(var(--spacing) * 8);
254
261
  }
255
- .h-10 {
256
- height: calc(var(--spacing) * 10);
257
- }
258
262
  .h-12 {
259
263
  height: calc(var(--spacing) * 12);
260
264
  }
261
- .h-\[550px\] {
262
- height: 550px;
263
- }
264
- .h-\[600px\] {
265
- height: 600px;
266
- }
267
265
  .h-auto {
268
266
  height: auto;
269
267
  }
@@ -297,15 +295,15 @@
297
295
  .w-\[90vw\] {
298
296
  width: 90vw;
299
297
  }
300
- .w-\[110px\] {
301
- width: 110px;
298
+ .w-\[140px\] {
299
+ width: 140px;
300
+ }
301
+ .w-\[500px\] {
302
+ width: 500px;
302
303
  }
303
304
  .w-\[550px\] {
304
305
  width: 550px;
305
306
  }
306
- .w-\[600px\] {
307
- width: 600px;
308
- }
309
307
  .w-auto {
310
308
  width: auto;
311
309
  }
@@ -324,9 +322,6 @@
324
322
  .min-w-0 {
325
323
  min-width: calc(var(--spacing) * 0);
326
324
  }
327
- .min-w-\[60px\] {
328
- min-width: 60px;
329
- }
330
325
  .min-w-\[80px\] {
331
326
  min-width: 80px;
332
327
  }
@@ -374,9 +369,6 @@
374
369
  .flex-col {
375
370
  flex-direction: column;
376
371
  }
377
- .flex-col-reverse {
378
- flex-direction: column-reverse;
379
- }
380
372
  .flex-row {
381
373
  flex-direction: row;
382
374
  }
@@ -407,6 +399,9 @@
407
399
  .justify-start {
408
400
  justify-content: flex-start;
409
401
  }
402
+ .gap-1 {
403
+ gap: calc(var(--spacing) * 1);
404
+ }
410
405
  .gap-2 {
411
406
  gap: calc(var(--spacing) * 2);
412
407
  }
@@ -419,6 +414,9 @@
419
414
  .gap-4 {
420
415
  gap: calc(var(--spacing) * 4);
421
416
  }
417
+ .gap-6 {
418
+ gap: calc(var(--spacing) * 6);
419
+ }
422
420
  .gap-10 {
423
421
  gap: calc(var(--spacing) * 10);
424
422
  }
@@ -455,6 +453,9 @@
455
453
  .rounded-lg {
456
454
  border-radius: var(--radius-lg);
457
455
  }
456
+ .rounded-sm {
457
+ border-radius: var(--radius-sm);
458
+ }
458
459
  .rounded-xl {
459
460
  border-radius: var(--radius-xl);
460
461
  }
@@ -582,6 +583,9 @@
582
583
  .p-5 {
583
584
  padding: calc(var(--spacing) * 5);
584
585
  }
586
+ .p-6 {
587
+ padding: calc(var(--spacing) * 6);
588
+ }
585
589
  .px-3 {
586
590
  padding-inline: calc(var(--spacing) * 3);
587
591
  }
@@ -594,8 +598,8 @@
594
598
  .py-3 {
595
599
  padding-block: calc(var(--spacing) * 3);
596
600
  }
597
- .pt-8 {
598
- padding-top: calc(var(--spacing) * 8);
601
+ .pt-4 {
602
+ padding-top: calc(var(--spacing) * 4);
599
603
  }
600
604
  .pt-20 {
601
605
  padding-top: calc(var(--spacing) * 20);
@@ -606,9 +610,6 @@
606
610
  .pr-5 {
607
611
  padding-right: calc(var(--spacing) * 5);
608
612
  }
609
- .pb-6 {
610
- padding-bottom: calc(var(--spacing) * 6);
611
- }
612
613
  .pl-4 {
613
614
  padding-left: calc(var(--spacing) * 4);
614
615
  }
@@ -631,6 +632,9 @@
631
632
  font-family: 'GTPlanar', sans-serif;
632
633
  font-feature-settings: 'ss03' on;
633
634
  }
635
+ .font-brand {
636
+ font-family: 'GTPlanar', sans-serif;
637
+ }
634
638
  .font-mono {
635
639
  font-family: var(--font-mono);
636
640
  }
@@ -669,6 +673,10 @@
669
673
  font-size: var(--text-xs);
670
674
  line-height: var(--tw-leading, var(--text-xs--line-height));
671
675
  }
676
+ .leading-6 {
677
+ --tw-leading: calc(var(--spacing) * 6);
678
+ line-height: calc(var(--spacing) * 6);
679
+ }
672
680
  .leading-none {
673
681
  --tw-leading: 1;
674
682
  line-height: 1;
@@ -834,11 +842,31 @@
834
842
  opacity: 100%;
835
843
  }
836
844
  }
845
+ .md\:mt-0 {
846
+ @media (width >= 48rem) {
847
+ margin-top: calc(var(--spacing) * 0);
848
+ }
849
+ }
850
+ .md\:block {
851
+ @media (width >= 48rem) {
852
+ display: block;
853
+ }
854
+ }
837
855
  .md\:w-auto {
838
856
  @media (width >= 48rem) {
839
857
  width: auto;
840
858
  }
841
859
  }
860
+ .md\:flex-row {
861
+ @media (width >= 48rem) {
862
+ flex-direction: row;
863
+ }
864
+ }
865
+ .md\:items-center {
866
+ @media (width >= 48rem) {
867
+ align-items: center;
868
+ }
869
+ }
842
870
  .md\:overflow-x-visible {
843
871
  @media (width >= 48rem) {
844
872
  overflow-x: visible;
@@ -864,6 +892,11 @@
864
892
  margin-top: calc(var(--spacing) * 0);
865
893
  }
866
894
  }
895
+ .lg\:mt-30 {
896
+ @media (width >= 64rem) {
897
+ margin-top: calc(var(--spacing) * 30);
898
+ }
899
+ }
867
900
  .lg\:mb-0 {
868
901
  @media (width >= 64rem) {
869
902
  margin-bottom: calc(var(--spacing) * 0);
@@ -899,11 +932,6 @@
899
932
  min-width: 700px;
900
933
  }
901
934
  }
902
- .lg\:flex-1 {
903
- @media (width >= 64rem) {
904
- flex: 1;
905
- }
906
- }
907
935
  .lg\:-translate-x-8 {
908
936
  @media (width >= 64rem) {
909
937
  --tw-translate-x: calc(var(--spacing) * -8);
@@ -932,19 +960,14 @@
932
960
  flex-direction: row;
933
961
  }
934
962
  }
935
- .lg\:flex-row-reverse {
936
- @media (width >= 64rem) {
937
- flex-direction: row-reverse;
938
- }
939
- }
940
- .lg\:items-center {
963
+ .lg\:justify-end {
941
964
  @media (width >= 64rem) {
942
- align-items: center;
965
+ justify-content: flex-end;
943
966
  }
944
967
  }
945
- .lg\:justify-end {
968
+ .lg\:justify-start {
946
969
  @media (width >= 64rem) {
947
- justify-content: flex-end;
970
+ justify-content: flex-start;
948
971
  }
949
972
  }
950
973
  .lg\:border-r-2 {
@@ -964,16 +987,6 @@
964
987
  stroke-width: 0.035;
965
988
  }
966
989
  }
967
- .lg\:pl-4 {
968
- @media (width >= 64rem) {
969
- padding-left: calc(var(--spacing) * 4);
970
- }
971
- }
972
- .lg\:text-right {
973
- @media (width >= 64rem) {
974
- text-align: right;
975
- }
976
- }
977
990
  .lg\:text-\[5em\] {
978
991
  @media (width >= 64rem) {
979
992
  font-size: 5em;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remotion/promo-pages",
3
- "version": "4.0.315",
3
+ "version": "4.0.317",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -10,14 +10,14 @@
10
10
  "polished": "4.3.1",
11
11
  "zod": "3.22.3",
12
12
  "bun-plugin-tailwind": "0.0.15",
13
- "@remotion/lottie": "4.0.315",
14
- "@remotion/lambda": "4.0.315",
15
- "@remotion/player": "4.0.315",
16
- "@remotion/animated-emoji": "4.0.315",
17
- "@remotion/shapes": "4.0.315",
18
- "@remotion/paths": "4.0.315",
19
- "remotion": "4.0.315",
20
- "create-video": "4.0.315"
13
+ "@remotion/lambda": "4.0.317",
14
+ "@remotion/lottie": "4.0.317",
15
+ "@remotion/player": "4.0.317",
16
+ "@remotion/animated-emoji": "4.0.317",
17
+ "create-video": "4.0.317",
18
+ "remotion": "4.0.317",
19
+ "@remotion/shapes": "4.0.317",
20
+ "@remotion/paths": "4.0.317"
21
21
  },
22
22
  "devDependencies": {
23
23
  "@eslint/eslintrc": "3.1.0",
@@ -34,7 +34,7 @@
34
34
  "tailwind-merge": "2.5.2",
35
35
  "bun-plugin-tailwind": "0.0.13",
36
36
  "clsx": "2.1.1",
37
- "@remotion/eslint-config-internal": "4.0.315"
37
+ "@remotion/eslint-config-internal": "4.0.317"
38
38
  },
39
39
  "repository": {
40
40
  "url": "https://github.com/remotion-dev/remotion/tree/main/packages/promo-pages"
Binary file