@remotion/promo-pages 4.0.393 → 4.0.395
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.js +297 -204
- package/dist/Users/jonathanburger/remotion/packages/promo-pages/dist/Homepage.js +297 -204
- package/dist/Users/jonathanburger/remotion/packages/promo-pages/dist/design.js +29 -6
- package/dist/Users/jonathanburger/remotion/packages/promo-pages/dist/homepage/Pricing.js +29 -6
- package/dist/Users/jonathanburger/remotion/packages/promo-pages/dist/template-modal-content.js +29 -6
- package/dist/Users/jonathanburger/remotion/packages/promo-pages/dist/templates.js +255 -162
- package/dist/design.js +29 -6
- package/dist/homepage/Pricing.js +29 -6
- package/dist/template-modal-content.js +29 -6
- package/dist/templates.js +255 -162
- package/package.json +12 -12
package/dist/Homepage.js
CHANGED
|
@@ -755,7 +755,7 @@ var __defProp2, __export2 = (target, all) => {
|
|
|
755
755
|
});
|
|
756
756
|
}, useIsPlayer = () => {
|
|
757
757
|
return useContext(IsPlayerContext);
|
|
758
|
-
}, VERSION = "4.0.
|
|
758
|
+
}, VERSION = "4.0.395", checkMultipleRemotionVersions = () => {
|
|
759
759
|
if (typeof globalThis === "undefined") {
|
|
760
760
|
return;
|
|
761
761
|
}
|
|
@@ -2929,11 +2929,15 @@ Check that all your Remotion packages are on the same version. If your dependenc
|
|
|
2929
2929
|
});
|
|
2930
2930
|
}, getCrossOriginValue = ({
|
|
2931
2931
|
crossOrigin,
|
|
2932
|
-
requestsVideoFrame
|
|
2932
|
+
requestsVideoFrame,
|
|
2933
|
+
isClientSideRendering
|
|
2933
2934
|
}) => {
|
|
2934
2935
|
if (crossOrigin !== undefined && crossOrigin !== null) {
|
|
2935
2936
|
return crossOrigin;
|
|
2936
2937
|
}
|
|
2938
|
+
if (isClientSideRendering) {
|
|
2939
|
+
return "anonymous";
|
|
2940
|
+
}
|
|
2937
2941
|
if (requestsVideoFrame) {
|
|
2938
2942
|
return "anonymous";
|
|
2939
2943
|
}
|
|
@@ -3638,8 +3642,17 @@ Check that all your Remotion packages are on the same version. If your dependenc
|
|
|
3638
3642
|
const [blocks, setBlocks] = useState13([]);
|
|
3639
3643
|
const [onBufferingCallbacks, setOnBufferingCallbacks] = useState13([]);
|
|
3640
3644
|
const [onResumeCallbacks, setOnResumeCallbacks] = useState13([]);
|
|
3645
|
+
const env = useRemotionEnvironment();
|
|
3646
|
+
const rendering = env.isRendering;
|
|
3641
3647
|
const buffering = useRef9(false);
|
|
3642
3648
|
const addBlock = useCallback8((block) => {
|
|
3649
|
+
if (rendering) {
|
|
3650
|
+
return {
|
|
3651
|
+
unblock: () => {
|
|
3652
|
+
return;
|
|
3653
|
+
}
|
|
3654
|
+
};
|
|
3655
|
+
}
|
|
3643
3656
|
setBlocks((b) => [...b, block]);
|
|
3644
3657
|
return {
|
|
3645
3658
|
unblock: () => {
|
|
@@ -3652,7 +3665,7 @@ Check that all your Remotion packages are on the same version. If your dependenc
|
|
|
3652
3665
|
});
|
|
3653
3666
|
}
|
|
3654
3667
|
};
|
|
3655
|
-
}, []);
|
|
3668
|
+
}, [rendering]);
|
|
3656
3669
|
const listenForBuffering = useCallback8((callback) => {
|
|
3657
3670
|
setOnBufferingCallbacks((c) => [...c, callback]);
|
|
3658
3671
|
return {
|
|
@@ -3670,6 +3683,9 @@ Check that all your Remotion packages are on the same version. If your dependenc
|
|
|
3670
3683
|
};
|
|
3671
3684
|
}, []);
|
|
3672
3685
|
useEffect7(() => {
|
|
3686
|
+
if (rendering) {
|
|
3687
|
+
return;
|
|
3688
|
+
}
|
|
3673
3689
|
if (blocks.length > 0) {
|
|
3674
3690
|
onBufferingCallbacks.forEach((c) => c());
|
|
3675
3691
|
playbackLogging({
|
|
@@ -3682,6 +3698,9 @@ Check that all your Remotion packages are on the same version. If your dependenc
|
|
|
3682
3698
|
}, [blocks]);
|
|
3683
3699
|
if (typeof window !== "undefined") {
|
|
3684
3700
|
useLayoutEffect6(() => {
|
|
3701
|
+
if (rendering) {
|
|
3702
|
+
return;
|
|
3703
|
+
}
|
|
3685
3704
|
if (blocks.length === 0) {
|
|
3686
3705
|
onResumeCallbacks.forEach((c) => c());
|
|
3687
3706
|
playbackLogging({
|
|
@@ -4465,7 +4484,8 @@ Check that all your Remotion packages are on the same version. If your dependenc
|
|
|
4465
4484
|
warnAboutTooHighVolume(userPreferredVolume);
|
|
4466
4485
|
const crossOriginValue = getCrossOriginValue({
|
|
4467
4486
|
crossOrigin,
|
|
4468
|
-
requestsVideoFrame: false
|
|
4487
|
+
requestsVideoFrame: false,
|
|
4488
|
+
isClientSideRendering: false
|
|
4469
4489
|
});
|
|
4470
4490
|
const propsToPass = useMemo21(() => {
|
|
4471
4491
|
return {
|
|
@@ -5202,9 +5222,11 @@ Check that all your Remotion packages are on the same version. If your dependenc
|
|
|
5202
5222
|
delayRender2
|
|
5203
5223
|
]);
|
|
5204
5224
|
}
|
|
5225
|
+
const { isClientSideRendering } = useRemotionEnvironment();
|
|
5205
5226
|
const crossOriginValue = getCrossOriginValue({
|
|
5206
5227
|
crossOrigin,
|
|
5207
|
-
requestsVideoFrame: false
|
|
5228
|
+
requestsVideoFrame: false,
|
|
5229
|
+
isClientSideRendering
|
|
5208
5230
|
});
|
|
5209
5231
|
return /* @__PURE__ */ jsx25("img", {
|
|
5210
5232
|
...props2,
|
|
@@ -5929,7 +5951,8 @@ Check that all your Remotion packages are on the same version. If your dependenc
|
|
|
5929
5951
|
}, [isSequenceHidden, style]);
|
|
5930
5952
|
const crossOriginValue = getCrossOriginValue({
|
|
5931
5953
|
crossOrigin,
|
|
5932
|
-
requestsVideoFrame: Boolean(onVideoFrame)
|
|
5954
|
+
requestsVideoFrame: Boolean(onVideoFrame),
|
|
5955
|
+
isClientSideRendering: false
|
|
5933
5956
|
});
|
|
5934
5957
|
return /* @__PURE__ */ jsx30("video", {
|
|
5935
5958
|
ref: videoRef,
|
|
@@ -20323,7 +20346,7 @@ var GitHubStars = () => {
|
|
|
20323
20346
|
width: "45px"
|
|
20324
20347
|
}),
|
|
20325
20348
|
/* @__PURE__ */ jsx47(StatItemContent, {
|
|
20326
|
-
content: "
|
|
20349
|
+
content: "25k",
|
|
20327
20350
|
width: "80px",
|
|
20328
20351
|
fontSize: "2.5rem",
|
|
20329
20352
|
fontWeight: "bold"
|
|
@@ -28991,6 +29014,27 @@ var FEATURED_TEMPLATES = [
|
|
|
28991
29014
|
allowEnableTailwind: false,
|
|
28992
29015
|
contributedBy: null
|
|
28993
29016
|
},
|
|
29017
|
+
{
|
|
29018
|
+
homePageLabel: "Prompt to Motion Graphics",
|
|
29019
|
+
shortName: "Prompt to Motion Graphics (Next.js)",
|
|
29020
|
+
org: "remotion-dev",
|
|
29021
|
+
repoName: "template-prompt-to-motion-graphics",
|
|
29022
|
+
description: "AI-powered code generation for Remotion",
|
|
29023
|
+
longerDescription: 'A SaaS template for "Prompt to Motion Graphics" products. Generates Remotion code, streams it to the frontend, and compiles and previews it in the browser.',
|
|
29024
|
+
promoBanner: {
|
|
29025
|
+
width: 1002,
|
|
29026
|
+
height: 720,
|
|
29027
|
+
src: "/img/prompt-to-motion-graphics.png"
|
|
29028
|
+
},
|
|
29029
|
+
cliId: "prompt-to-motion-graphics",
|
|
29030
|
+
type: "image",
|
|
29031
|
+
defaultBranch: "main",
|
|
29032
|
+
featuredOnHomePage: null,
|
|
29033
|
+
previewURL: null,
|
|
29034
|
+
templateInMonorepo: "template-prompt-to-motion-graphics",
|
|
29035
|
+
allowEnableTailwind: false,
|
|
29036
|
+
contributedBy: "ASchwad"
|
|
29037
|
+
},
|
|
28994
29038
|
{
|
|
28995
29039
|
homePageLabel: "JavaScript",
|
|
28996
29040
|
shortName: "Hello World (JavaScript)",
|
|
@@ -29349,30 +29393,74 @@ var Blank = (props) => {
|
|
|
29349
29393
|
});
|
|
29350
29394
|
};
|
|
29351
29395
|
|
|
29352
|
-
// src/components/icons/
|
|
29396
|
+
// src/components/icons/brain.tsx
|
|
29353
29397
|
import { jsx as jsx120, jsxs as jsxs50 } from "react/jsx-runtime";
|
|
29354
|
-
var
|
|
29398
|
+
var BrainIcon = (props) => {
|
|
29355
29399
|
return /* @__PURE__ */ jsxs50("svg", {
|
|
29400
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
29401
|
+
viewBox: "0 0 24 24",
|
|
29402
|
+
fill: "none",
|
|
29403
|
+
stroke: "currentColor",
|
|
29404
|
+
strokeWidth: "2",
|
|
29405
|
+
strokeLinecap: "round",
|
|
29406
|
+
strokeLinejoin: "round",
|
|
29407
|
+
...props,
|
|
29408
|
+
children: [
|
|
29409
|
+
/* @__PURE__ */ jsx120("path", {
|
|
29410
|
+
d: "M12 5a3 3 0 1 0-5.997.125 4 4 0 0 0-2.526 5.77 4 4 0 0 0 .556 6.588A4 4 0 1 0 12 18Z"
|
|
29411
|
+
}),
|
|
29412
|
+
/* @__PURE__ */ jsx120("path", {
|
|
29413
|
+
d: "M12 5a3 3 0 1 1 5.997.125 4 4 0 0 1 2.526 5.77 4 4 0 0 1-.556 6.588A4 4 0 1 1 12 18Z"
|
|
29414
|
+
}),
|
|
29415
|
+
/* @__PURE__ */ jsx120("path", {
|
|
29416
|
+
d: "M15 13a4.5 4.5 0 0 1-3-4 4.5 4.5 0 0 1-3 4"
|
|
29417
|
+
}),
|
|
29418
|
+
/* @__PURE__ */ jsx120("path", {
|
|
29419
|
+
d: "M17.599 6.5a3 3 0 0 0 .399-1.375"
|
|
29420
|
+
}),
|
|
29421
|
+
/* @__PURE__ */ jsx120("path", {
|
|
29422
|
+
d: "M6.003 5.125A3 3 0 0 0 6.401 6.5"
|
|
29423
|
+
}),
|
|
29424
|
+
/* @__PURE__ */ jsx120("path", {
|
|
29425
|
+
d: "M3.477 10.896a4 4 0 0 1 .585-.396"
|
|
29426
|
+
}),
|
|
29427
|
+
/* @__PURE__ */ jsx120("path", {
|
|
29428
|
+
d: "M19.938 10.5a4 4 0 0 1 .585.396"
|
|
29429
|
+
}),
|
|
29430
|
+
/* @__PURE__ */ jsx120("path", {
|
|
29431
|
+
d: "M6 18a4 4 0 0 1-1.967-.516"
|
|
29432
|
+
}),
|
|
29433
|
+
/* @__PURE__ */ jsx120("path", {
|
|
29434
|
+
d: "M19.967 17.484A4 4 0 0 1 18 18"
|
|
29435
|
+
})
|
|
29436
|
+
]
|
|
29437
|
+
});
|
|
29438
|
+
};
|
|
29439
|
+
|
|
29440
|
+
// src/components/icons/code-hike.tsx
|
|
29441
|
+
import { jsx as jsx121, jsxs as jsxs51 } from "react/jsx-runtime";
|
|
29442
|
+
var CodeHike = (props) => {
|
|
29443
|
+
return /* @__PURE__ */ jsxs51("svg", {
|
|
29356
29444
|
...props,
|
|
29357
29445
|
viewBox: "-100 -100 200 200",
|
|
29358
29446
|
fill: "currentColor",
|
|
29359
29447
|
children: [
|
|
29360
|
-
/* @__PURE__ */
|
|
29448
|
+
/* @__PURE__ */ jsx121("path", {
|
|
29361
29449
|
d: "M 70 60 L 42 -27 L 72 -27 L 100 60 Z"
|
|
29362
29450
|
}),
|
|
29363
|
-
/* @__PURE__ */
|
|
29451
|
+
/* @__PURE__ */ jsx121("path", {
|
|
29364
29452
|
d: "M 20.419540229885058 40.05357142857142 L 42 -27 L 72 -27 L 50.41954022988506 40.05357142857142 Z"
|
|
29365
29453
|
}),
|
|
29366
|
-
/* @__PURE__ */
|
|
29454
|
+
/* @__PURE__ */ jsx121("path", {
|
|
29367
29455
|
d: "M 20.419540229885058 40.05357142857142 L -15 -70 L 15 -70 L 50.41954022988506 40.05357142857142 Z"
|
|
29368
29456
|
}),
|
|
29369
|
-
/* @__PURE__ */
|
|
29457
|
+
/* @__PURE__ */ jsx121("path", {
|
|
29370
29458
|
d: "M -50.41954022988506 40.05357142857142 L -15 -70 L 15 -70 L -20.419540229885058 40.05357142857142 Z"
|
|
29371
29459
|
}),
|
|
29372
|
-
/* @__PURE__ */
|
|
29460
|
+
/* @__PURE__ */ jsx121("path", {
|
|
29373
29461
|
d: "M -50.41954022988506 40.05357142857142 L -72 -27 L -42 -27 L -20.419540229885058 40.05357142857142 Z"
|
|
29374
29462
|
}),
|
|
29375
|
-
/* @__PURE__ */
|
|
29463
|
+
/* @__PURE__ */ jsx121("path", {
|
|
29376
29464
|
d: "M -100 60 L -72 -27 L -42 -27 L -70 60 Z"
|
|
29377
29465
|
})
|
|
29378
29466
|
]
|
|
@@ -29380,13 +29468,13 @@ var CodeHike = (props) => {
|
|
|
29380
29468
|
};
|
|
29381
29469
|
|
|
29382
29470
|
// src/components/icons/cubes.tsx
|
|
29383
|
-
import { jsx as
|
|
29471
|
+
import { jsx as jsx124 } from "react/jsx-runtime";
|
|
29384
29472
|
var Cubes = (props) => {
|
|
29385
|
-
return /* @__PURE__ */
|
|
29473
|
+
return /* @__PURE__ */ jsx124("svg", {
|
|
29386
29474
|
xmlns: "http://www.w3.org/2000/svg",
|
|
29387
29475
|
viewBox: "0 0 512 512",
|
|
29388
29476
|
...props,
|
|
29389
|
-
children: /* @__PURE__ */
|
|
29477
|
+
children: /* @__PURE__ */ jsx124("path", {
|
|
29390
29478
|
fill: "currentColor",
|
|
29391
29479
|
d: "M239.5 5.018C250.1 1.106 261.9 1.106 272.5 5.018L480.5 81.28C499.4 88.22 512 106.2 512 126.4V385.7C512 405.8 499.4 423.8 480.5 430.7L272.5 506.1C261.9 510.9 250.1 510.9 239.5 506.1L31.48 430.7C12.57 423.8 0 405.8 0 385.7V126.4C0 106.2 12.57 88.22 31.48 81.28L239.5 5.018zM261.5 35.06C257.1 33.76 254 33.76 250.5 35.06L44.14 110.7L256 193.1L467.9 110.7L261.5 35.06zM42.49 400.7L240 473.1V222L32 140.3V385.7C32 392.4 36.19 398.4 42.49 400.7V400.7zM272 473.1L469.5 400.7C475.8 398.4 480 392.4 480 385.7V140.3L272 222V473.1z"
|
|
29392
29480
|
})
|
|
@@ -29394,13 +29482,13 @@ var Cubes = (props) => {
|
|
|
29394
29482
|
};
|
|
29395
29483
|
|
|
29396
29484
|
// src/components/icons/js.tsx
|
|
29397
|
-
import { jsx as
|
|
29485
|
+
import { jsx as jsx126 } from "react/jsx-runtime";
|
|
29398
29486
|
var JSIcon = (props) => {
|
|
29399
|
-
return /* @__PURE__ */
|
|
29487
|
+
return /* @__PURE__ */ jsx126("svg", {
|
|
29400
29488
|
className: "svg-inline--fa fa-js-square fa-w-14",
|
|
29401
29489
|
viewBox: "0 0 448 512",
|
|
29402
29490
|
...props,
|
|
29403
|
-
children: /* @__PURE__ */
|
|
29491
|
+
children: /* @__PURE__ */ jsx126("path", {
|
|
29404
29492
|
fill: "currentColor",
|
|
29405
29493
|
d: "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM243.8 381.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z"
|
|
29406
29494
|
})
|
|
@@ -29408,13 +29496,13 @@ var JSIcon = (props) => {
|
|
|
29408
29496
|
};
|
|
29409
29497
|
|
|
29410
29498
|
// src/components/icons/music.tsx
|
|
29411
|
-
import { jsx as
|
|
29499
|
+
import { jsx as jsx127 } from "react/jsx-runtime";
|
|
29412
29500
|
var MusicIcon = (props) => {
|
|
29413
|
-
return /* @__PURE__ */
|
|
29501
|
+
return /* @__PURE__ */ jsx127("svg", {
|
|
29414
29502
|
...props,
|
|
29415
29503
|
xmlns: "http://www.w3.org/2000/svg",
|
|
29416
29504
|
viewBox: "0 0 512 512",
|
|
29417
|
-
children: /* @__PURE__ */
|
|
29505
|
+
children: /* @__PURE__ */ jsx127("path", {
|
|
29418
29506
|
fill: "currentColor",
|
|
29419
29507
|
d: "M499.1 6.3c8.1 6 12.9 15.6 12.9 25.7l0 72 0 264c0 44.2-43 80-96 80s-96-35.8-96-80s43-80 96-80c11.2 0 22 1.6 32 4.6L448 147 192 223.8 192 432c0 44.2-43 80-96 80s-96-35.8-96-80s43-80 96-80c11.2 0 22 1.6 32 4.6L128 200l0-72c0-14.1 9.3-26.6 22.8-30.7l320-96c9.7-2.9 20.2-1.1 28.3 5z"
|
|
29420
29508
|
})
|
|
@@ -29422,15 +29510,15 @@ var MusicIcon = (props) => {
|
|
|
29422
29510
|
};
|
|
29423
29511
|
|
|
29424
29512
|
// src/components/icons/next.tsx
|
|
29425
|
-
import { jsx as
|
|
29513
|
+
import { jsx as jsx128, jsxs as jsxs53 } from "react/jsx-runtime";
|
|
29426
29514
|
var NextIcon = ({ style: style4 }) => {
|
|
29427
|
-
return /* @__PURE__ */
|
|
29515
|
+
return /* @__PURE__ */ jsxs53("svg", {
|
|
29428
29516
|
fill: "none",
|
|
29429
29517
|
viewBox: "0 0 180 180",
|
|
29430
29518
|
style: style4,
|
|
29431
29519
|
xmlns: "http://www.w3.org/2000/svg",
|
|
29432
29520
|
children: [
|
|
29433
|
-
/* @__PURE__ */
|
|
29521
|
+
/* @__PURE__ */ jsx128("mask", {
|
|
29434
29522
|
height: "180",
|
|
29435
29523
|
id: "mask0_292_250",
|
|
29436
29524
|
maskUnits: "userSpaceOnUse",
|
|
@@ -29438,27 +29526,27 @@ var NextIcon = ({ style: style4 }) => {
|
|
|
29438
29526
|
width: "180",
|
|
29439
29527
|
x: "0",
|
|
29440
29528
|
y: "0",
|
|
29441
|
-
children: /* @__PURE__ */
|
|
29529
|
+
children: /* @__PURE__ */ jsx128("circle", {
|
|
29442
29530
|
cx: "90",
|
|
29443
29531
|
cy: "90",
|
|
29444
29532
|
fill: "currentcolor",
|
|
29445
29533
|
r: "90"
|
|
29446
29534
|
})
|
|
29447
29535
|
}),
|
|
29448
|
-
/* @__PURE__ */
|
|
29536
|
+
/* @__PURE__ */ jsxs53("g", {
|
|
29449
29537
|
mask: "url(#mask0_292_250)",
|
|
29450
29538
|
children: [
|
|
29451
|
-
/* @__PURE__ */
|
|
29539
|
+
/* @__PURE__ */ jsx128("circle", {
|
|
29452
29540
|
cx: "90",
|
|
29453
29541
|
cy: "90",
|
|
29454
29542
|
fill: "currentcolor",
|
|
29455
29543
|
r: "90"
|
|
29456
29544
|
}),
|
|
29457
|
-
/* @__PURE__ */
|
|
29545
|
+
/* @__PURE__ */ jsx128("path", {
|
|
29458
29546
|
d: "M149.508 157.52L69.142 54H54V125.97H66.1136V69.3836L139.999 164.845C143.333 162.614 146.509 160.165 149.508 157.52Z",
|
|
29459
29547
|
fill: "url(#paint0_linear_292_250)"
|
|
29460
29548
|
}),
|
|
29461
|
-
/* @__PURE__ */
|
|
29549
|
+
/* @__PURE__ */ jsx128("rect", {
|
|
29462
29550
|
fill: "url(#paint1_linear_292_250)",
|
|
29463
29551
|
height: "72",
|
|
29464
29552
|
width: "12",
|
|
@@ -29467,9 +29555,9 @@ var NextIcon = ({ style: style4 }) => {
|
|
|
29467
29555
|
})
|
|
29468
29556
|
]
|
|
29469
29557
|
}),
|
|
29470
|
-
/* @__PURE__ */
|
|
29558
|
+
/* @__PURE__ */ jsxs53("defs", {
|
|
29471
29559
|
children: [
|
|
29472
|
-
/* @__PURE__ */
|
|
29560
|
+
/* @__PURE__ */ jsxs53("linearGradient", {
|
|
29473
29561
|
gradientUnits: "userSpaceOnUse",
|
|
29474
29562
|
id: "paint0_linear_292_250",
|
|
29475
29563
|
x1: "109",
|
|
@@ -29477,17 +29565,17 @@ var NextIcon = ({ style: style4 }) => {
|
|
|
29477
29565
|
y1: "116.5",
|
|
29478
29566
|
y2: "160.5",
|
|
29479
29567
|
children: [
|
|
29480
|
-
/* @__PURE__ */
|
|
29568
|
+
/* @__PURE__ */ jsx128("stop", {
|
|
29481
29569
|
stopColor: "var(--background)"
|
|
29482
29570
|
}),
|
|
29483
|
-
/* @__PURE__ */
|
|
29571
|
+
/* @__PURE__ */ jsx128("stop", {
|
|
29484
29572
|
offset: "1",
|
|
29485
29573
|
stopColor: "var(--background)",
|
|
29486
29574
|
stopOpacity: "0"
|
|
29487
29575
|
})
|
|
29488
29576
|
]
|
|
29489
29577
|
}),
|
|
29490
|
-
/* @__PURE__ */
|
|
29578
|
+
/* @__PURE__ */ jsxs53("linearGradient", {
|
|
29491
29579
|
gradientUnits: "userSpaceOnUse",
|
|
29492
29580
|
id: "paint1_linear_292_250",
|
|
29493
29581
|
x1: "121",
|
|
@@ -29495,10 +29583,10 @@ var NextIcon = ({ style: style4 }) => {
|
|
|
29495
29583
|
y1: "54",
|
|
29496
29584
|
y2: "106.875",
|
|
29497
29585
|
children: [
|
|
29498
|
-
/* @__PURE__ */
|
|
29586
|
+
/* @__PURE__ */ jsx128("stop", {
|
|
29499
29587
|
stopColor: "var(--background)"
|
|
29500
29588
|
}),
|
|
29501
|
-
/* @__PURE__ */
|
|
29589
|
+
/* @__PURE__ */ jsx128("stop", {
|
|
29502
29590
|
offset: "1",
|
|
29503
29591
|
stopColor: "var(--background)",
|
|
29504
29592
|
stopOpacity: "0"
|
|
@@ -29512,19 +29600,19 @@ var NextIcon = ({ style: style4 }) => {
|
|
|
29512
29600
|
};
|
|
29513
29601
|
|
|
29514
29602
|
// src/components/icons/overlay.tsx
|
|
29515
|
-
import { jsx as
|
|
29603
|
+
import { jsx as jsx129, jsxs as jsxs55 } from "react/jsx-runtime";
|
|
29516
29604
|
var OverlayIcon = (props) => {
|
|
29517
|
-
return /* @__PURE__ */
|
|
29605
|
+
return /* @__PURE__ */ jsxs55("svg", {
|
|
29518
29606
|
viewBox: "0 0 576 512",
|
|
29519
29607
|
fill: "none",
|
|
29520
29608
|
xmlns: "http://www.w3.org/2000/svg",
|
|
29521
29609
|
...props,
|
|
29522
29610
|
children: [
|
|
29523
|
-
/* @__PURE__ */
|
|
29611
|
+
/* @__PURE__ */ jsx129("path", {
|
|
29524
29612
|
d: "M251.1 407.9C274.5 418.7 301.5 418.7 324.9 407.9V407.8L476.9 337.6L530.1 362.2C538.6 366.1 544 374.6 544 384C544 393.4 538.6 401.9 530.1 405.8L311.5 506.8C296.6 513.7 279.4 513.7 264.5 506.8L45.9 405.8C37.4 401.9 32 393.4 32 384C32 374.6 37.4 366.1 45.9 362.2L99.1 337.7L251.1 407.9Z",
|
|
29525
29613
|
fill: "currentcolor"
|
|
29526
29614
|
}),
|
|
29527
|
-
/* @__PURE__ */
|
|
29615
|
+
/* @__PURE__ */ jsx129("path", {
|
|
29528
29616
|
d: "M277.8 132.7L495.2 230.1C505.4 234.7 512 244.8 512 256C512 267.2 505.4 277.3 495.2 281.9L277.8 379.3C270.1 382.4 263.5 384 256 384C248.5 384 241 382.4 234.2 379.3L16.76 281.9C6.561 277.3 0.0003 267.2 0.0003 256C0.0003 244.8 6.561 234.7 16.76 230.1L234.2 132.7C241 129.6 248.5 128 256 128C263.5 128 270.1 129.6 277.8 132.7Z",
|
|
29529
29617
|
stroke: "currentcolor",
|
|
29530
29618
|
transform: "translate(32, -25)",
|
|
@@ -29535,13 +29623,13 @@ var OverlayIcon = (props) => {
|
|
|
29535
29623
|
};
|
|
29536
29624
|
|
|
29537
29625
|
// src/components/icons/prompt-to-video.tsx
|
|
29538
|
-
import { jsx as
|
|
29626
|
+
import { jsx as jsx130 } from "react/jsx-runtime";
|
|
29539
29627
|
var PromptToVideoIcon = (props) => {
|
|
29540
|
-
return /* @__PURE__ */
|
|
29628
|
+
return /* @__PURE__ */ jsx130("svg", {
|
|
29541
29629
|
xmlns: "http://www.w3.org/2000/svg",
|
|
29542
29630
|
viewBox: "0 0 512 512",
|
|
29543
29631
|
...props,
|
|
29544
|
-
children: /* @__PURE__ */
|
|
29632
|
+
children: /* @__PURE__ */ jsx130("path", {
|
|
29545
29633
|
d: "M278.5 15.6C275 6.2 266 0 256 0s-19 6.2-22.5 15.6L174.2 174.2 15.6 233.5C6.2 237 0 246 0 256s6.2 19 15.6 22.5l158.6 59.4 59.4 158.6C237 505.8 246 512 256 512s19-6.2 22.5-15.6l59.4-158.6 158.6-59.4C505.8 275 512 266 512 256s-6.2-19-15.6-22.5L337.8 174.2 278.5 15.6z",
|
|
29546
29634
|
fill: "currentColor"
|
|
29547
29635
|
})
|
|
@@ -29549,23 +29637,23 @@ var PromptToVideoIcon = (props) => {
|
|
|
29549
29637
|
};
|
|
29550
29638
|
|
|
29551
29639
|
// src/components/icons/recorder.tsx
|
|
29552
|
-
import { jsx as
|
|
29640
|
+
import { jsx as jsx131, jsxs as jsxs56 } from "react/jsx-runtime";
|
|
29553
29641
|
var Recorder = (props) => {
|
|
29554
|
-
return /* @__PURE__ */
|
|
29642
|
+
return /* @__PURE__ */ jsxs56("svg", {
|
|
29555
29643
|
viewBox: "0 0 700 700",
|
|
29556
29644
|
...props,
|
|
29557
29645
|
children: [
|
|
29558
|
-
/* @__PURE__ */
|
|
29646
|
+
/* @__PURE__ */ jsx131("path", {
|
|
29559
29647
|
d: "M0 350C0 115.5 115.5 0 350 0C584.5 0 700 115.5 700 350C700 584.5 584.5 700 350 700C115.5 700 0 584.5 0 350Z",
|
|
29560
29648
|
fill: "#F43B00",
|
|
29561
29649
|
fillOpacity: "0.15"
|
|
29562
29650
|
}),
|
|
29563
|
-
/* @__PURE__ */
|
|
29651
|
+
/* @__PURE__ */ jsx131("path", {
|
|
29564
29652
|
d: "M79.4595 344.324C79.4595 161.794 169.362 71.8915 351.892 71.8915C534.422 71.8915 624.324 161.794 624.324 344.324C624.324 526.854 534.422 616.756 351.892 616.756C169.362 616.756 79.4595 526.854 79.4595 344.324Z",
|
|
29565
29653
|
fill: "#F43B00",
|
|
29566
29654
|
fillOpacity: "0.3"
|
|
29567
29655
|
}),
|
|
29568
|
-
/* @__PURE__ */
|
|
29656
|
+
/* @__PURE__ */ jsx131("path", {
|
|
29569
29657
|
d: "M155.135 343.378C155.135 212.185 219.752 147.567 350.946 147.567C482.139 147.567 546.756 212.185 546.756 343.378C546.756 474.571 482.139 539.189 350.946 539.189C219.752 539.189 155.135 474.571 155.135 343.378Z",
|
|
29570
29658
|
fill: "#F43B00"
|
|
29571
29659
|
})
|
|
@@ -29574,9 +29662,9 @@ var Recorder = (props) => {
|
|
|
29574
29662
|
};
|
|
29575
29663
|
|
|
29576
29664
|
// src/components/icons/remix.tsx
|
|
29577
|
-
import { jsx as
|
|
29665
|
+
import { jsx as jsx134, jsxs as jsxs57 } from "react/jsx-runtime";
|
|
29578
29666
|
var ReactRouterIcon = (props) => {
|
|
29579
|
-
return /* @__PURE__ */
|
|
29667
|
+
return /* @__PURE__ */ jsx134("svg", {
|
|
29580
29668
|
xmlns: "http://www.w3.org/2000/svg",
|
|
29581
29669
|
width: "800px",
|
|
29582
29670
|
height: "800px",
|
|
@@ -29584,13 +29672,13 @@ var ReactRouterIcon = (props) => {
|
|
|
29584
29672
|
version: "1.1",
|
|
29585
29673
|
preserveAspectRatio: "xMidYMid",
|
|
29586
29674
|
...props,
|
|
29587
|
-
children: /* @__PURE__ */
|
|
29675
|
+
children: /* @__PURE__ */ jsxs57("g", {
|
|
29588
29676
|
children: [
|
|
29589
|
-
/* @__PURE__ */
|
|
29677
|
+
/* @__PURE__ */ jsx134("path", {
|
|
29590
29678
|
d: "M78.0659341,92.5875806 C90.8837956,92.5875806 101.274726,82.1966508 101.274726,69.3787894 C101.274726,56.5609279 90.8837956,46.1699982 78.0659341,46.1699982 C65.2480726,46.1699982 54.8571429,56.5609279 54.8571429,69.3787894 C54.8571429,82.1966508 65.2480726,92.5875806 78.0659341,92.5875806 Z M23.2087913,139.005163 C36.0266526,139.005163 46.4175825,128.614233 46.4175825,115.796372 C46.4175825,102.97851 36.0266526,92.5875806 23.2087913,92.5875806 C10.3909298,92.5875806 0,102.97851 0,115.796372 C0,128.614233 10.3909298,139.005163 23.2087913,139.005163 Z M232.791209,139.005163 C245.60907,139.005163 256,128.614233 256,115.796372 C256,102.97851 245.60907,92.5875806 232.791209,92.5875806 C219.973347,92.5875806 209.582418,102.97851 209.582418,115.796372 C209.582418,128.614233 219.973347,139.005163 232.791209,139.005163 Z",
|
|
29591
29679
|
fill: "currentcolor"
|
|
29592
29680
|
}),
|
|
29593
|
-
/* @__PURE__ */
|
|
29681
|
+
/* @__PURE__ */ jsx134("path", {
|
|
29594
29682
|
d: "M156.565464,70.3568084 C155.823426,62.6028163 155.445577,56.1490255 149.505494,51.6131676 C141.982638,45.8687002 133.461166,49.5960243 122.964463,45.8072968 C112.650326,43.3121427 105,34.1545727 105,23.2394367 C105,10.4046502 115.577888,0 128.626373,0 C138.29063,0 146.599638,5.70747659 150.259573,13.8825477 C155.861013,24.5221258 152.220489,35.3500418 159.258242,40.8041273 C167.591489,47.2621895 178.826167,42.5329154 191.362109,48.6517412 C195.390112,50.5026944 198.799584,53.4384578 201.202056,57.0769224 C203.604528,60.7153869 205,65.0565524 205,69.7183101 C205,80.633446 197.349674,89.7910161 187.035538,92.2861702 C176.538834,96.0748977 168.017363,92.3475736 160.494506,98.092041 C152.03503,104.551712 156.563892,115.358642 149.669352,126.774447 C145.756163,134.291567 137.802119,139.43662 128.626373,139.43662 C115.577888,139.43662 105,129.03197 105,116.197184 C105,106.873668 110.581887,98.832521 118.637891,95.1306146 C131.173833,89.0117889 142.408511,93.7410629 150.741758,87.2830007 C155.549106,83.5574243 156.565464,77.8102648 156.565464,70.3568084 Z",
|
|
29595
29683
|
fill: "currentcolor"
|
|
29596
29684
|
})
|
|
@@ -29600,9 +29688,9 @@ var ReactRouterIcon = (props) => {
|
|
|
29600
29688
|
};
|
|
29601
29689
|
|
|
29602
29690
|
// src/components/icons/render-server.tsx
|
|
29603
|
-
import { jsx as
|
|
29691
|
+
import { jsx as jsx136, jsxs as jsxs58 } from "react/jsx-runtime";
|
|
29604
29692
|
var RenderServerIcon = (props) => {
|
|
29605
|
-
return /* @__PURE__ */
|
|
29693
|
+
return /* @__PURE__ */ jsxs58("svg", {
|
|
29606
29694
|
...props,
|
|
29607
29695
|
xmlns: "http://www.w3.org/2000/svg",
|
|
29608
29696
|
viewBox: "0 0 24 24",
|
|
@@ -29612,14 +29700,14 @@ var RenderServerIcon = (props) => {
|
|
|
29612
29700
|
strokeLinecap: "round",
|
|
29613
29701
|
strokeLinejoin: "round",
|
|
29614
29702
|
children: [
|
|
29615
|
-
/* @__PURE__ */
|
|
29703
|
+
/* @__PURE__ */ jsx136("rect", {
|
|
29616
29704
|
width: "18",
|
|
29617
29705
|
height: "18",
|
|
29618
29706
|
x: "3",
|
|
29619
29707
|
y: "3",
|
|
29620
29708
|
rx: "2"
|
|
29621
29709
|
}),
|
|
29622
|
-
/* @__PURE__ */
|
|
29710
|
+
/* @__PURE__ */ jsx136("path", {
|
|
29623
29711
|
d: "m10 8 4 4-4 4"
|
|
29624
29712
|
})
|
|
29625
29713
|
]
|
|
@@ -29627,13 +29715,13 @@ var RenderServerIcon = (props) => {
|
|
|
29627
29715
|
};
|
|
29628
29716
|
|
|
29629
29717
|
// src/components/icons/skia.tsx
|
|
29630
|
-
import { jsx as
|
|
29718
|
+
import { jsx as jsx137 } from "react/jsx-runtime";
|
|
29631
29719
|
var SkiaIcon = (props) => {
|
|
29632
|
-
return /* @__PURE__ */
|
|
29720
|
+
return /* @__PURE__ */ jsx137("svg", {
|
|
29633
29721
|
...props,
|
|
29634
29722
|
xmlns: "http://www.w3.org/2000/svg",
|
|
29635
29723
|
viewBox: "0 0 576 512",
|
|
29636
|
-
children: /* @__PURE__ */
|
|
29724
|
+
children: /* @__PURE__ */ jsx137("path", {
|
|
29637
29725
|
fill: "currentColor",
|
|
29638
29726
|
d: "M288 400C288 461.9 237.9 512 176 512H32C14.33 512 0 497.7 0 480C0 462.3 14.33 448 32 448H36.81C54.44 448 66.4 429.1 64.59 411.6C64.2 407.8 64 403.9 64 400C64 338.1 114.1 288 176 288C178.8 288 181.5 288.1 184.3 288.3C184.1 285.7 183.1 282.1 183.1 280.3C183.1 244.6 201.1 210.1 229.1 189.1L474.3 12.25C499.7-6.279 534.9-3.526 557.2 18.74C579.4 41 582.2 76.16 563.7 101.6L386.1 345.1C365 374.9 331.4 392 295.7 392C293 392 290.3 391.9 287.7 391.7C287.9 394.5 287.1 397.2 287.1 400H288zM295.7 360C321.2 360 345.2 347.8 360.2 327.2L537.8 82.82C547.1 70.08 545.7 52.5 534.5 41.37C523.4 30.24 505.8 28.86 493.1 38.12L248.8 215.8C228.2 230.8 215.1 254.8 215.1 280.3C215.1 285.7 216.5 290.9 217.5 295.1L217.6 295.1C217.9 297.3 218.2 298.6 218.5 299.9L276.1 357.5C277.4 357.8 278.7 358.1 280 358.4L280 358.5C285.1 359.5 290.3 360 295.7 360L295.7 360zM253.5 380.1L195.9 322.5C194.5 322.2 193.2 321.8 191.9 321.6C186.7 320.5 181.4 320 176 320C131.8 320 96 355.8 96 400C96 402.8 96.14 405.6 96.43 408.3C98.15 425 93.42 441.9 83.96 455.1C74.31 468.5 58 480 36.81 480H176C220.2 480 256 444.2 256 400C256 394.6 255.5 389.3 254.4 384.1C254.2 382.8 253.9 381.5 253.5 380.1V380.1z"
|
|
29639
29727
|
})
|
|
@@ -29641,13 +29729,13 @@ var SkiaIcon = (props) => {
|
|
|
29641
29729
|
};
|
|
29642
29730
|
|
|
29643
29731
|
// src/components/icons/stargazer.tsx
|
|
29644
|
-
import { jsx as
|
|
29732
|
+
import { jsx as jsx138 } from "react/jsx-runtime";
|
|
29645
29733
|
var Stargazer = (props) => {
|
|
29646
|
-
return /* @__PURE__ */
|
|
29734
|
+
return /* @__PURE__ */ jsx138("svg", {
|
|
29647
29735
|
height: "1em",
|
|
29648
29736
|
viewBox: "0 0 512 512",
|
|
29649
29737
|
...props,
|
|
29650
|
-
children: /* @__PURE__ */
|
|
29738
|
+
children: /* @__PURE__ */ jsx138("path", {
|
|
29651
29739
|
fill: "currentcolor",
|
|
29652
29740
|
d: "M325.8 152.3c1.3 4.6 5.5 7.7 10.2 7.7s8.9-3.1 10.2-7.7L360 104l48.3-13.8c4.6-1.3 7.7-5.5 7.7-10.2s-3.1-8.9-7.7-10.2L360 56 346.2 7.7C344.9 3.1 340.7 0 336 0s-8.9 3.1-10.2 7.7L312 56 263.7 69.8c-4.6 1.3-7.7 5.5-7.7 10.2s3.1 8.9 7.7 10.2L312 104l13.8 48.3zM115.7 346.2L75.5 307l55.5-8.1c15.6-2.3 29.2-12.1 36.1-26.3l24.8-50.3 24.8 50.3c7 14.2 20.5 24 36.1 26.3l55.5 8.1-40.2 39.2c-11.3 11-16.4 26.9-13.8 42.4l9.5 55.4-49.5-26.1c-14-7.4-30.7-7.4-44.7 0L120 444l9.5-55.4c2.7-15.6-2.5-31.4-13.8-42.4zm54.7-188.8l-46.3 94L20.5 266.5C.9 269.3-7 293.5 7.2 307.4l74.9 73.2L64.5 483.9c-3.4 19.6 17.2 34.6 34.8 25.3l92.6-48.8 92.6 48.8c17.6 9.3 38.2-5.7 34.8-25.3L301.6 380.6l74.9-73.2c14.2-13.9 6.4-38.1-13.3-40.9L259.7 251.4l-46.3-94c-8.8-17.9-34.3-17.9-43.1 0zm258.4 85.8l11 38.6c1 3.6 4.4 6.2 8.2 6.2s7.1-2.5 8.2-6.2l11-38.6 38.6-11c3.6-1 6.2-4.4 6.2-8.2s-2.5-7.1-6.2-8.2l-38.6-11-11-38.6c-1-3.6-4.4-6.2-8.2-6.2s-7.1 2.5-8.2 6.2l-11 38.6-38.6 11c-3.6 1-6.2 4.4-6.2 8.2s2.5 7.1 6.2 8.2l38.6 11z"
|
|
29653
29741
|
})
|
|
@@ -29655,13 +29743,13 @@ var Stargazer = (props) => {
|
|
|
29655
29743
|
};
|
|
29656
29744
|
|
|
29657
29745
|
// src/components/icons/still.tsx
|
|
29658
|
-
import { jsx as
|
|
29746
|
+
import { jsx as jsx139 } from "react/jsx-runtime";
|
|
29659
29747
|
var StillIcon = (props) => {
|
|
29660
|
-
return /* @__PURE__ */
|
|
29748
|
+
return /* @__PURE__ */ jsx139("svg", {
|
|
29661
29749
|
xmlns: "http://www.w3.org/2000/svg",
|
|
29662
29750
|
viewBox: "0 0 512 512",
|
|
29663
29751
|
...props,
|
|
29664
|
-
children: /* @__PURE__ */
|
|
29752
|
+
children: /* @__PURE__ */ jsx139("path", {
|
|
29665
29753
|
fill: "currentColor",
|
|
29666
29754
|
d: "M324.9 157.8c-11.38-17.38-39.89-17.31-51.23-.0625L200.5 268.5L184.1 245.9C172.7 229.1 145.9 229.9 134.4 245.9l-64.52 89.16c-6.797 9.406-7.75 21.72-2.547 32C72.53 377.5 83.05 384 94.75 384h322.5c11.41 0 21.8-6.281 27.14-16.38c5.312-10 4.734-22.09-1.516-31.56L324.9 157.8zM95.8 352l62.39-87.38l29.91 41.34C191.2 310.2 196.4 313.2 201.4 312.6c5.25-.125 10.12-2.781 13.02-7.188l83.83-129.9L415 352H95.8zM447.1 32h-384C28.65 32-.0091 60.65-.0091 96v320c0 35.35 28.65 64 63.1 64h384c35.35 0 64-28.65 64-64V96C511.1 60.65 483.3 32 447.1 32zM480 416c0 17.64-14.36 32-32 32H64c-17.64 0-32-14.36-32-32V96c0-17.64 14.36-32 32-32h384c17.64 0 32 14.36 32 32V416zM144 192C170.5 192 192 170.5 192 144S170.5 96 144 96S96 117.5 96 144S117.5 192 144 192zM144 128c8.822 0 15.1 7.178 15.1 16S152.8 160 144 160S128 152.8 128 144S135.2 128 144 128z"
|
|
29667
29755
|
})
|
|
@@ -29669,12 +29757,12 @@ var StillIcon = (props) => {
|
|
|
29669
29757
|
};
|
|
29670
29758
|
|
|
29671
29759
|
// src/components/icons/tiktok.tsx
|
|
29672
|
-
import { jsx as
|
|
29760
|
+
import { jsx as jsx140 } from "react/jsx-runtime";
|
|
29673
29761
|
var TikTok = (props) => {
|
|
29674
|
-
return /* @__PURE__ */
|
|
29762
|
+
return /* @__PURE__ */ jsx140("svg", {
|
|
29675
29763
|
...props,
|
|
29676
29764
|
viewBox: "0 0 448 512",
|
|
29677
|
-
children: /* @__PURE__ */
|
|
29765
|
+
children: /* @__PURE__ */ jsx140("path", {
|
|
29678
29766
|
fill: "currentcolor",
|
|
29679
29767
|
d: "M448 209.9a210.1 210.1 0 0 1 -122.8-39.3V349.4A162.6 162.6 0 1 1 185 188.3V278.2a74.6 74.6 0 1 0 52.2 71.2V0l88 0a121.2 121.2 0 0 0 1.9 22.2h0A122.2 122.2 0 0 0 381 102.4a121.4 121.4 0 0 0 67 20.1z"
|
|
29680
29768
|
})
|
|
@@ -29682,14 +29770,14 @@ var TikTok = (props) => {
|
|
|
29682
29770
|
};
|
|
29683
29771
|
|
|
29684
29772
|
// src/components/icons/ts.tsx
|
|
29685
|
-
import { jsx as
|
|
29773
|
+
import { jsx as jsx141 } from "react/jsx-runtime";
|
|
29686
29774
|
var TypeScriptIcon = (props) => {
|
|
29687
|
-
return /* @__PURE__ */
|
|
29775
|
+
return /* @__PURE__ */ jsx141("svg", {
|
|
29688
29776
|
fill: "#000000",
|
|
29689
29777
|
xmlns: "http://www.w3.org/2000/svg",
|
|
29690
29778
|
viewBox: "0 0 24 24",
|
|
29691
29779
|
...props,
|
|
29692
|
-
children: /* @__PURE__ */
|
|
29780
|
+
children: /* @__PURE__ */ jsx141("path", {
|
|
29693
29781
|
fill: "currentColor",
|
|
29694
29782
|
d: "M3,5v14c0,1.105,0.895,2,2,2h14c1.105,0,2-0.895,2-2V5c0-1.105-0.895-2-2-2H5C3.895,3,3,3.895,3,5z M13.666,12.451h-2.118\tV19H9.841v-6.549H7.767V11h5.899V12.451z M13.998,18.626v-1.751c0,0,0.956,0.721,2.104,0.721c1.148,0,1.103-0.75,1.103-0.853\tc0-1.089-3.251-1.089-3.251-3.501c0-3.281,4.737-1.986,4.737-1.986l-0.059,1.559c0,0-0.794-0.53-1.692-0.53\tc-0.897,0-1.221,0.427-1.221,0.883c0,1.177,3.281,1.059,3.281,3.428C19,20.244,13.998,18.626,13.998,18.626z"
|
|
29695
29783
|
})
|
|
@@ -29697,13 +29785,13 @@ var TypeScriptIcon = (props) => {
|
|
|
29697
29785
|
};
|
|
29698
29786
|
|
|
29699
29787
|
// src/components/icons/tts.tsx
|
|
29700
|
-
import { jsx as
|
|
29788
|
+
import { jsx as jsx144 } from "react/jsx-runtime";
|
|
29701
29789
|
var TTSIcon = (props) => {
|
|
29702
|
-
return /* @__PURE__ */
|
|
29790
|
+
return /* @__PURE__ */ jsx144("svg", {
|
|
29703
29791
|
xmlns: "http://www.w3.org/2000/svg",
|
|
29704
29792
|
viewBox: "0 0 512 512",
|
|
29705
29793
|
...props,
|
|
29706
|
-
children: /* @__PURE__ */
|
|
29794
|
+
children: /* @__PURE__ */ jsx144("path", {
|
|
29707
29795
|
fill: "currentColor",
|
|
29708
29796
|
d: "M256 31.1c-141.4 0-255.1 93.13-255.1 208c0 47.62 19.91 91.25 52.91 126.3c-14.87 39.5-45.87 72.88-46.37 73.25c-6.623 7-8.373 17.25-4.623 26C5.816 474.3 14.38 480 24 480c61.49 0 109.1-25.75 139.1-46.25c28.1 9 60.16 14.25 92.9 14.25c141.4 0 255.1-93.13 255.1-207.1S397.4 31.1 256 31.1zM256 416c-28.25 0-56.24-4.25-83.24-12.75c-9.516-3.068-19.92-1.461-28.07 4.338c-22.1 16.25-58.54 35.29-102.7 39.66c11.1-15.12 29.75-40.5 40.74-69.63l.1289-.3398c4.283-11.27 1.791-23.1-6.43-32.82C47.51 313.1 32.06 277.6 32.06 240c0-97 100.5-176 223.1-176c123.5 0 223.1 79 223.1 176S379.5 416 256 416zM272 272h-128c-8.801 0-16 7.199-16 15.1C127.1 296.8 135.2 304 144 304h128c8.801 0 15.1-7.204 15.1-16C287.1 279.2 280.8 272 272 272zM368 176h-224c-8.801 0-16 7.199-16 15.1C127.1 200.8 135.2 208 144 208h224c8.801 0 15.1-7.204 15.1-16C383.1 183.2 376.8 176 368 176z"
|
|
29709
29797
|
})
|
|
@@ -29711,13 +29799,13 @@ var TTSIcon = (props) => {
|
|
|
29711
29799
|
};
|
|
29712
29800
|
|
|
29713
29801
|
// src/components/icons/waveform.tsx
|
|
29714
|
-
import { jsx as
|
|
29802
|
+
import { jsx as jsx146 } from "react/jsx-runtime";
|
|
29715
29803
|
var Waveform = (props) => {
|
|
29716
|
-
return /* @__PURE__ */
|
|
29804
|
+
return /* @__PURE__ */ jsx146("svg", {
|
|
29717
29805
|
xmlns: "http://www.w3.org/2000/svg",
|
|
29718
29806
|
viewBox: "0 0 640 512",
|
|
29719
29807
|
...props,
|
|
29720
|
-
children: /* @__PURE__ */
|
|
29808
|
+
children: /* @__PURE__ */ jsx146("path", {
|
|
29721
29809
|
fill: "currentColor",
|
|
29722
29810
|
d: "M224 96C215.2 96 208 103.2 208 111.1v288C208 408.8 215.2 416 223.1 416C232.8 416 240 408.8 240 400V111.1C240 103.2 232.8 96 224 96zM128 192C119.2 192 112 199.2 112 207.1V304C112 312.8 119.2 320 127.1 320S144 312.8 144 304V207.1C144 199.2 136.8 192 128 192zM32 224C23.2 224 16 231.2 16 239.1V272C16 280.8 23.2 288 31.1 288S48 280.8 48 272V239.1C48 231.2 40.8 224 32 224zM416 128C407.2 128 400 135.2 400 143.1v224C400 376.8 407.2 384 415.1 384S432 376.8 432 368V143.1C432 135.2 424.8 128 416 128zM608 224c-8.8 0-16 7.2-16 15.1V272C592 280.8 599.2 288 608 288s16-7.2 16-15.1V239.1C624 231.2 616.8 224 608 224zM512 64c-8.8 0-16 7.2-16 15.1V432C496 440.8 503.2 448 511.1 448C520.8 448 528 440.8 528 432V79.1C528 71.2 520.8 64 512 64zM320 0C311.2 0 304 7.2 304 15.1V496C304 504.8 311.2 512 319.1 512S336 504.8 336 496V15.1C336 7.2 328.8 0 320 0z"
|
|
29723
29811
|
})
|
|
@@ -29725,17 +29813,17 @@ var Waveform = (props) => {
|
|
|
29725
29813
|
};
|
|
29726
29814
|
|
|
29727
29815
|
// src/components/homepage/IconForTemplate.tsx
|
|
29728
|
-
import { jsx as
|
|
29816
|
+
import { jsx as jsx147 } from "react/jsx-runtime";
|
|
29729
29817
|
var IconForTemplate = ({ template, scale: scale4 = 1 }) => {
|
|
29730
29818
|
if (template.cliId === "hello-world") {
|
|
29731
|
-
return /* @__PURE__ */
|
|
29819
|
+
return /* @__PURE__ */ jsx147(TypeScriptIcon, {
|
|
29732
29820
|
style: {
|
|
29733
29821
|
height: scale4 * 48
|
|
29734
29822
|
}
|
|
29735
29823
|
});
|
|
29736
29824
|
}
|
|
29737
29825
|
if (template.cliId === "blank") {
|
|
29738
|
-
return /* @__PURE__ */
|
|
29826
|
+
return /* @__PURE__ */ jsx147(Blank, {
|
|
29739
29827
|
style: {
|
|
29740
29828
|
height: scale4 * 36,
|
|
29741
29829
|
overflow: "visible"
|
|
@@ -29743,105 +29831,110 @@ var IconForTemplate = ({ template, scale: scale4 = 1 }) => {
|
|
|
29743
29831
|
});
|
|
29744
29832
|
}
|
|
29745
29833
|
if (template.cliId === "javascript") {
|
|
29746
|
-
return /* @__PURE__ */
|
|
29834
|
+
return /* @__PURE__ */ jsx147(JSIcon, {
|
|
29747
29835
|
style: {
|
|
29748
29836
|
height: scale4 * 40
|
|
29749
29837
|
}
|
|
29750
29838
|
});
|
|
29751
29839
|
}
|
|
29752
29840
|
if (template.cliId === "three") {
|
|
29753
|
-
return /* @__PURE__ */
|
|
29841
|
+
return /* @__PURE__ */ jsx147(Cubes, {
|
|
29754
29842
|
style: {
|
|
29755
29843
|
height: scale4 * 36
|
|
29756
29844
|
}
|
|
29757
29845
|
});
|
|
29758
29846
|
}
|
|
29759
29847
|
if (template.cliId === "still") {
|
|
29760
|
-
return /* @__PURE__ */
|
|
29848
|
+
return /* @__PURE__ */ jsx147(StillIcon, {
|
|
29761
29849
|
style: {
|
|
29762
29850
|
height: scale4 * 36
|
|
29763
29851
|
}
|
|
29764
29852
|
});
|
|
29765
29853
|
}
|
|
29766
29854
|
if (template.cliId === "audiogram") {
|
|
29767
|
-
return /* @__PURE__ */
|
|
29855
|
+
return /* @__PURE__ */ jsx147(Waveform, {
|
|
29768
29856
|
style: {
|
|
29769
29857
|
height: scale4 * 36
|
|
29770
29858
|
}
|
|
29771
29859
|
});
|
|
29772
29860
|
}
|
|
29773
29861
|
if (template.cliId === "tts") {
|
|
29774
|
-
return /* @__PURE__ */
|
|
29862
|
+
return /* @__PURE__ */ jsx147(TTSIcon, {
|
|
29775
29863
|
style: {
|
|
29776
29864
|
height: scale4 * 36
|
|
29777
29865
|
}
|
|
29778
29866
|
});
|
|
29779
29867
|
}
|
|
29780
29868
|
if (template.cliId === "google-tts") {
|
|
29781
|
-
return /* @__PURE__ */
|
|
29869
|
+
return /* @__PURE__ */ jsx147(TTSIcon, {
|
|
29782
29870
|
style: {
|
|
29783
29871
|
height: scale4 * 36
|
|
29784
29872
|
}
|
|
29785
29873
|
});
|
|
29786
29874
|
}
|
|
29787
29875
|
if (template.cliId === "skia") {
|
|
29788
|
-
return /* @__PURE__ */
|
|
29876
|
+
return /* @__PURE__ */ jsx147(SkiaIcon, {
|
|
29789
29877
|
style: {
|
|
29790
29878
|
height: scale4 * 32
|
|
29791
29879
|
}
|
|
29792
29880
|
});
|
|
29793
29881
|
}
|
|
29794
29882
|
if (template.cliId === "music-visualization") {
|
|
29795
|
-
return /* @__PURE__ */
|
|
29883
|
+
return /* @__PURE__ */ jsx147(MusicIcon, {
|
|
29796
29884
|
style: {
|
|
29797
29885
|
height: scale4 * 32
|
|
29798
29886
|
}
|
|
29799
29887
|
});
|
|
29800
29888
|
}
|
|
29801
29889
|
if (template.cliId === "react-router") {
|
|
29802
|
-
return /* @__PURE__ */
|
|
29890
|
+
return /* @__PURE__ */ jsx147(ReactRouterIcon, {
|
|
29803
29891
|
style: {
|
|
29804
29892
|
height: scale4 * 32
|
|
29805
29893
|
}
|
|
29806
29894
|
});
|
|
29807
29895
|
}
|
|
29808
29896
|
if (template.cliId === "overlay") {
|
|
29809
|
-
return /* @__PURE__ */
|
|
29897
|
+
return /* @__PURE__ */ jsx147(OverlayIcon, {
|
|
29810
29898
|
style: { height: scale4 * 42 }
|
|
29811
29899
|
});
|
|
29812
29900
|
}
|
|
29813
29901
|
if (template.cliId === "render-server") {
|
|
29814
|
-
return /* @__PURE__ */
|
|
29902
|
+
return /* @__PURE__ */ jsx147(RenderServerIcon, {
|
|
29815
29903
|
style: { height: scale4 * 36 }
|
|
29816
29904
|
});
|
|
29817
29905
|
}
|
|
29818
29906
|
if (template.cliId === "recorder") {
|
|
29819
|
-
return /* @__PURE__ */
|
|
29907
|
+
return /* @__PURE__ */ jsx147(Recorder, {
|
|
29820
29908
|
style: { height: scale4 * 36 }
|
|
29821
29909
|
});
|
|
29822
29910
|
}
|
|
29823
29911
|
if (template.cliId === "next" || template.cliId === "next-tailwind" || template.cliId === "next-pages-dir") {
|
|
29824
|
-
return /* @__PURE__ */
|
|
29912
|
+
return /* @__PURE__ */ jsx147(NextIcon, {
|
|
29825
29913
|
style: { height: scale4 * 36 }
|
|
29826
29914
|
});
|
|
29827
29915
|
}
|
|
29828
29916
|
if (template.cliId === "stargazer") {
|
|
29829
|
-
return /* @__PURE__ */
|
|
29917
|
+
return /* @__PURE__ */ jsx147(Stargazer, {
|
|
29830
29918
|
style: { height: scale4 * 36 }
|
|
29831
29919
|
});
|
|
29832
29920
|
}
|
|
29833
29921
|
if (template.cliId === "tiktok") {
|
|
29834
|
-
return /* @__PURE__ */
|
|
29922
|
+
return /* @__PURE__ */ jsx147(TikTok, {
|
|
29835
29923
|
style: { height: scale4 * 36 }
|
|
29836
29924
|
});
|
|
29837
29925
|
}
|
|
29838
29926
|
if (template.cliId === "code-hike") {
|
|
29839
|
-
return /* @__PURE__ */
|
|
29927
|
+
return /* @__PURE__ */ jsx147(CodeHike, {
|
|
29840
29928
|
style: { height: scale4 * 36 }
|
|
29841
29929
|
});
|
|
29842
29930
|
}
|
|
29843
29931
|
if (template.cliId === "prompt-to-video") {
|
|
29844
|
-
return /* @__PURE__ */
|
|
29932
|
+
return /* @__PURE__ */ jsx147(PromptToVideoIcon, {
|
|
29933
|
+
style: { height: scale4 * 36 }
|
|
29934
|
+
});
|
|
29935
|
+
}
|
|
29936
|
+
if (template.cliId === "prompt-to-motion-graphics") {
|
|
29937
|
+
return /* @__PURE__ */ jsx147(BrainIcon, {
|
|
29845
29938
|
style: { height: scale4 * 36 }
|
|
29846
29939
|
});
|
|
29847
29940
|
}
|
|
@@ -29855,25 +29948,25 @@ var useMobileLayout = () => {
|
|
|
29855
29948
|
};
|
|
29856
29949
|
|
|
29857
29950
|
// src/components/homepage/MoreTemplatesButton.tsx
|
|
29858
|
-
import { jsx as
|
|
29951
|
+
import { jsx as jsx148, jsxs as jsxs59 } from "react/jsx-runtime";
|
|
29859
29952
|
var icon6 = {
|
|
29860
29953
|
height: 16,
|
|
29861
29954
|
marginLeft: 10
|
|
29862
29955
|
};
|
|
29863
29956
|
var MoreTemplatesButton = () => {
|
|
29864
29957
|
const mobileLayout = useMobileLayout();
|
|
29865
|
-
return /* @__PURE__ */
|
|
29958
|
+
return /* @__PURE__ */ jsx148("a", {
|
|
29866
29959
|
href: "/templates",
|
|
29867
29960
|
className: "no-underline text-inherit",
|
|
29868
|
-
children: /* @__PURE__ */
|
|
29961
|
+
children: /* @__PURE__ */ jsxs59(Button, {
|
|
29869
29962
|
className: "right-0 border-2 rounded-full text-inherit px-4 py-2 fontbrand font-semibold text-sm flex flex-row items-center h-10",
|
|
29870
29963
|
children: [
|
|
29871
29964
|
mobileLayout ? "Templates" : "Find a template",
|
|
29872
|
-
/* @__PURE__ */
|
|
29965
|
+
/* @__PURE__ */ jsx148("svg", {
|
|
29873
29966
|
style: icon6,
|
|
29874
29967
|
xmlns: "http://www.w3.org/2000/svg",
|
|
29875
29968
|
viewBox: "0 0 448 512",
|
|
29876
|
-
children: /* @__PURE__ */
|
|
29969
|
+
children: /* @__PURE__ */ jsx148("path", {
|
|
29877
29970
|
fill: "currentColor",
|
|
29878
29971
|
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"
|
|
29879
29972
|
})
|
|
@@ -29884,7 +29977,7 @@ var MoreTemplatesButton = () => {
|
|
|
29884
29977
|
};
|
|
29885
29978
|
|
|
29886
29979
|
// src/components/homepage/TemplateIcon.tsx
|
|
29887
|
-
import { jsx as
|
|
29980
|
+
import { jsx as jsx149, jsxs as jsxs60 } from "react/jsx-runtime";
|
|
29888
29981
|
var icon7 = {
|
|
29889
29982
|
display: "flex",
|
|
29890
29983
|
width: 36,
|
|
@@ -29905,14 +29998,14 @@ var outer = {
|
|
|
29905
29998
|
};
|
|
29906
29999
|
var TemplateIcon = ({ children, label: label3 }) => {
|
|
29907
30000
|
const mobileLayout = useMobileLayout();
|
|
29908
|
-
return /* @__PURE__ */
|
|
30001
|
+
return /* @__PURE__ */ jsxs60("span", {
|
|
29909
30002
|
style: outer,
|
|
29910
30003
|
children: [
|
|
29911
|
-
/* @__PURE__ */
|
|
30004
|
+
/* @__PURE__ */ jsx149("div", {
|
|
29912
30005
|
style: icon7,
|
|
29913
30006
|
children
|
|
29914
30007
|
}),
|
|
29915
|
-
mobileLayout ? null : /* @__PURE__ */
|
|
30008
|
+
mobileLayout ? null : /* @__PURE__ */ jsx149("div", {
|
|
29916
30009
|
className: "text-xs fontbrand",
|
|
29917
30010
|
children: label3
|
|
29918
30011
|
})
|
|
@@ -29921,19 +30014,19 @@ var TemplateIcon = ({ children, label: label3 }) => {
|
|
|
29921
30014
|
};
|
|
29922
30015
|
|
|
29923
30016
|
// src/components/homepage/ChooseTemplate.tsx
|
|
29924
|
-
import { jsx as
|
|
30017
|
+
import { jsx as jsx150, jsxs as jsxs61 } from "react/jsx-runtime";
|
|
29925
30018
|
var ChooseTemplate = () => {
|
|
29926
|
-
return /* @__PURE__ */
|
|
30019
|
+
return /* @__PURE__ */ jsx150("div", {
|
|
29927
30020
|
style: {
|
|
29928
30021
|
display: "flex",
|
|
29929
30022
|
flexDirection: "column"
|
|
29930
30023
|
},
|
|
29931
|
-
children: /* @__PURE__ */
|
|
30024
|
+
children: /* @__PURE__ */ jsx150("div", {
|
|
29932
30025
|
style: {
|
|
29933
30026
|
position: "relative",
|
|
29934
30027
|
textAlign: "center"
|
|
29935
30028
|
},
|
|
29936
|
-
children: /* @__PURE__ */
|
|
30029
|
+
children: /* @__PURE__ */ jsxs61("div", {
|
|
29937
30030
|
className: "no-scroll-bar",
|
|
29938
30031
|
style: {
|
|
29939
30032
|
display: "inline-flex",
|
|
@@ -29947,19 +30040,19 @@ var ChooseTemplate = () => {
|
|
|
29947
30040
|
},
|
|
29948
30041
|
children: [
|
|
29949
30042
|
CreateVideoInternals.FEATURED_TEMPLATES.filter((f) => f.featuredOnHomePage).map((template) => {
|
|
29950
|
-
return /* @__PURE__ */
|
|
30043
|
+
return /* @__PURE__ */ jsx150("a", {
|
|
29951
30044
|
className: "text-inherit no-underline",
|
|
29952
30045
|
href: `/templates/${template.cliId}`,
|
|
29953
|
-
children: /* @__PURE__ */
|
|
30046
|
+
children: /* @__PURE__ */ jsx150(TemplateIcon, {
|
|
29954
30047
|
label: template.featuredOnHomePage,
|
|
29955
|
-
children: /* @__PURE__ */
|
|
30048
|
+
children: /* @__PURE__ */ jsx150(IconForTemplate, {
|
|
29956
30049
|
scale: 0.7,
|
|
29957
30050
|
template
|
|
29958
30051
|
})
|
|
29959
30052
|
})
|
|
29960
30053
|
}, template.cliId);
|
|
29961
30054
|
}),
|
|
29962
|
-
/* @__PURE__ */
|
|
30055
|
+
/* @__PURE__ */ jsx150(MoreTemplatesButton, {})
|
|
29963
30056
|
]
|
|
29964
30057
|
})
|
|
29965
30058
|
})
|
|
@@ -29970,48 +30063,48 @@ var ChooseTemplate = () => {
|
|
|
29970
30063
|
import { useState as useState57 } from "react";
|
|
29971
30064
|
|
|
29972
30065
|
// src/components/homepage/GitHubButton.tsx
|
|
29973
|
-
import { jsx as
|
|
30066
|
+
import { jsx as jsx151, jsxs as jsxs63 } from "react/jsx-runtime";
|
|
29974
30067
|
var GithubIcon = () => {
|
|
29975
|
-
return /* @__PURE__ */
|
|
30068
|
+
return /* @__PURE__ */ jsx151("svg", {
|
|
29976
30069
|
viewBox: "0 0 496 512",
|
|
29977
30070
|
style: { height: 24, marginRight: 8 },
|
|
29978
|
-
children: /* @__PURE__ */
|
|
30071
|
+
children: /* @__PURE__ */ jsx151("path", {
|
|
29979
30072
|
fill: "currentColor",
|
|
29980
30073
|
d: "M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"
|
|
29981
30074
|
})
|
|
29982
30075
|
});
|
|
29983
30076
|
};
|
|
29984
30077
|
var GithubButton = () => {
|
|
29985
|
-
return /* @__PURE__ */
|
|
30078
|
+
return /* @__PURE__ */ jsxs63("div", {
|
|
29986
30079
|
className: "flex flex-row items-center text-base",
|
|
29987
30080
|
children: [
|
|
29988
|
-
/* @__PURE__ */
|
|
30081
|
+
/* @__PURE__ */ jsx151(GithubIcon, {}),
|
|
29989
30082
|
" ",
|
|
29990
|
-
/* @__PURE__ */
|
|
30083
|
+
/* @__PURE__ */ jsx151("span", {
|
|
29991
30084
|
children: "GitHub"
|
|
29992
30085
|
}),
|
|
29993
30086
|
" ",
|
|
29994
|
-
/* @__PURE__ */
|
|
30087
|
+
/* @__PURE__ */ jsx151("div", {
|
|
29995
30088
|
className: "text-xs inline-block ml-2 leading-none mt-[3px] self-center",
|
|
29996
|
-
children: "
|
|
30089
|
+
children: "25k"
|
|
29997
30090
|
})
|
|
29998
30091
|
]
|
|
29999
30092
|
});
|
|
30000
30093
|
};
|
|
30001
30094
|
|
|
30002
30095
|
// src/components/homepage/GetStartedStrip.tsx
|
|
30003
|
-
import { jsx as
|
|
30096
|
+
import { jsx as jsx154, jsxs as jsxs65 } from "react/jsx-runtime";
|
|
30004
30097
|
var GetStarted = () => {
|
|
30005
30098
|
const [clicked, setClicked] = useState57(null);
|
|
30006
|
-
return /* @__PURE__ */
|
|
30099
|
+
return /* @__PURE__ */ jsxs65("div", {
|
|
30007
30100
|
className: "flex flex-col lg:flex-row items-center justify-center text-center w-full",
|
|
30008
30101
|
children: [
|
|
30009
|
-
/* @__PURE__ */
|
|
30102
|
+
/* @__PURE__ */ jsx154("div", {
|
|
30010
30103
|
className: "w-full lg:w-auto",
|
|
30011
|
-
children: /* @__PURE__ */
|
|
30104
|
+
children: /* @__PURE__ */ jsxs65("div", {
|
|
30012
30105
|
className: "flex flex-row w-full relative",
|
|
30013
30106
|
children: [
|
|
30014
|
-
clicked ? /* @__PURE__ */
|
|
30107
|
+
clicked ? /* @__PURE__ */ jsx154("div", {
|
|
30015
30108
|
style: {
|
|
30016
30109
|
animation: "click 0.7s linear",
|
|
30017
30110
|
animationFillMode: "forwards"
|
|
@@ -30019,7 +30112,7 @@ var GetStarted = () => {
|
|
|
30019
30112
|
className: "absolute z-0 top-[-10px] font-mono text-sm text-center w-full",
|
|
30020
30113
|
children: "Copied!"
|
|
30021
30114
|
}, clicked) : null,
|
|
30022
|
-
/* @__PURE__ */
|
|
30115
|
+
/* @__PURE__ */ jsx154(Button, {
|
|
30023
30116
|
className: "bg-[#333] text-white rounded-lg px-4 font-mono hover:[#444] cursor-pointer w-full",
|
|
30024
30117
|
onClick: () => {
|
|
30025
30118
|
navigator.clipboard.writeText("npx create-video@latest");
|
|
@@ -30031,54 +30124,54 @@ var GetStarted = () => {
|
|
|
30031
30124
|
]
|
|
30032
30125
|
})
|
|
30033
30126
|
}),
|
|
30034
|
-
/* @__PURE__ */
|
|
30127
|
+
/* @__PURE__ */ jsx154("div", {
|
|
30035
30128
|
className: "w-2 h-2"
|
|
30036
30129
|
}),
|
|
30037
|
-
/* @__PURE__ */
|
|
30130
|
+
/* @__PURE__ */ jsx154("div", {
|
|
30038
30131
|
className: "w-full lg:w-auto",
|
|
30039
|
-
children: /* @__PURE__ */
|
|
30132
|
+
children: /* @__PURE__ */ jsx154("a", {
|
|
30040
30133
|
className: "no-underline w-full block",
|
|
30041
30134
|
href: "https://www.youtube.com/watch?v=deg8bOoziaE",
|
|
30042
30135
|
target: "_blank",
|
|
30043
|
-
children: /* @__PURE__ */
|
|
30136
|
+
children: /* @__PURE__ */ jsx154(Button, {
|
|
30044
30137
|
className: "w-full",
|
|
30045
30138
|
children: "Watch demo"
|
|
30046
30139
|
})
|
|
30047
30140
|
})
|
|
30048
30141
|
}),
|
|
30049
|
-
/* @__PURE__ */
|
|
30142
|
+
/* @__PURE__ */ jsx154("div", {
|
|
30050
30143
|
style: { width: 10, height: 10 }
|
|
30051
30144
|
}),
|
|
30052
|
-
/* @__PURE__ */
|
|
30145
|
+
/* @__PURE__ */ jsx154("a", {
|
|
30053
30146
|
className: "no-underline w-full lg:w-auto",
|
|
30054
30147
|
href: "/docs",
|
|
30055
|
-
children: /* @__PURE__ */
|
|
30148
|
+
children: /* @__PURE__ */ jsx154(Button, {
|
|
30056
30149
|
className: "w-full",
|
|
30057
30150
|
children: "Docs"
|
|
30058
30151
|
})
|
|
30059
30152
|
}),
|
|
30060
|
-
/* @__PURE__ */
|
|
30153
|
+
/* @__PURE__ */ jsx154("div", {
|
|
30061
30154
|
className: "w-2 h-2"
|
|
30062
30155
|
}),
|
|
30063
|
-
/* @__PURE__ */
|
|
30156
|
+
/* @__PURE__ */ jsx154("a", {
|
|
30064
30157
|
className: "no-underline w-full lg:w-auto",
|
|
30065
30158
|
href: "https://remotion.dev/discord",
|
|
30066
30159
|
target: "_blank",
|
|
30067
|
-
children: /* @__PURE__ */
|
|
30160
|
+
children: /* @__PURE__ */ jsx154(Button, {
|
|
30068
30161
|
className: "w-full",
|
|
30069
30162
|
children: "Discord"
|
|
30070
30163
|
})
|
|
30071
30164
|
}),
|
|
30072
|
-
/* @__PURE__ */
|
|
30165
|
+
/* @__PURE__ */ jsx154("div", {
|
|
30073
30166
|
className: "w-2 h-2"
|
|
30074
30167
|
}),
|
|
30075
|
-
/* @__PURE__ */
|
|
30168
|
+
/* @__PURE__ */ jsx154("a", {
|
|
30076
30169
|
className: "no-underline w-full lg:w-auto",
|
|
30077
30170
|
href: "https://github.com/remotion-dev/remotion",
|
|
30078
30171
|
target: "_blank",
|
|
30079
|
-
children: /* @__PURE__ */
|
|
30172
|
+
children: /* @__PURE__ */ jsx154(Button, {
|
|
30080
30173
|
className: "w-full",
|
|
30081
|
-
children: /* @__PURE__ */
|
|
30174
|
+
children: /* @__PURE__ */ jsx154(GithubButton, {})
|
|
30082
30175
|
})
|
|
30083
30176
|
})
|
|
30084
30177
|
]
|
|
@@ -30086,99 +30179,99 @@ var GetStarted = () => {
|
|
|
30086
30179
|
};
|
|
30087
30180
|
|
|
30088
30181
|
// src/components/homepage/WriteInReact.tsx
|
|
30089
|
-
import { jsx as
|
|
30182
|
+
import { jsx as jsx156, jsxs as jsxs66 } from "react/jsx-runtime";
|
|
30090
30183
|
var WriteInReact = () => {
|
|
30091
|
-
return /* @__PURE__ */
|
|
30184
|
+
return /* @__PURE__ */ jsxs66("div", {
|
|
30092
30185
|
children: [
|
|
30093
|
-
/* @__PURE__ */
|
|
30186
|
+
/* @__PURE__ */ jsx156("h1", {
|
|
30094
30187
|
className: "text-5xl lg:text-[5em] text-center fontbrand font-black leading-none ",
|
|
30095
30188
|
style: {
|
|
30096
30189
|
textShadow: "0 5px 30px var(--background)"
|
|
30097
30190
|
},
|
|
30098
30191
|
children: "Make videos programmatically."
|
|
30099
30192
|
}),
|
|
30100
|
-
/* @__PURE__ */
|
|
30193
|
+
/* @__PURE__ */ jsxs66("p", {
|
|
30101
30194
|
style: {
|
|
30102
30195
|
textShadow: "0 5px 30px var(--background)"
|
|
30103
30196
|
},
|
|
30104
30197
|
className: "font-medium text-center text-lg",
|
|
30105
30198
|
children: [
|
|
30106
30199
|
"Create real MP4 videos with React. ",
|
|
30107
|
-
/* @__PURE__ */
|
|
30200
|
+
/* @__PURE__ */ jsx156("br", {}),
|
|
30108
30201
|
"Parametrize content, render server-side and build applications."
|
|
30109
30202
|
]
|
|
30110
30203
|
}),
|
|
30111
|
-
/* @__PURE__ */
|
|
30112
|
-
/* @__PURE__ */
|
|
30113
|
-
children: /* @__PURE__ */
|
|
30204
|
+
/* @__PURE__ */ jsx156("br", {}),
|
|
30205
|
+
/* @__PURE__ */ jsx156("div", {
|
|
30206
|
+
children: /* @__PURE__ */ jsx156(GetStarted, {})
|
|
30114
30207
|
}),
|
|
30115
|
-
/* @__PURE__ */
|
|
30116
|
-
/* @__PURE__ */
|
|
30117
|
-
/* @__PURE__ */
|
|
30208
|
+
/* @__PURE__ */ jsx156("br", {}),
|
|
30209
|
+
/* @__PURE__ */ jsx156("br", {}),
|
|
30210
|
+
/* @__PURE__ */ jsx156(ChooseTemplate, {})
|
|
30118
30211
|
]
|
|
30119
30212
|
});
|
|
30120
30213
|
};
|
|
30121
30214
|
|
|
30122
30215
|
// src/components/Homepage.tsx
|
|
30123
|
-
import { jsx as
|
|
30216
|
+
import { jsx as jsx157, jsxs as jsxs67 } from "react/jsx-runtime";
|
|
30124
30217
|
"use client";
|
|
30125
30218
|
var NewLanding = ({ colorMode, setColorMode }) => {
|
|
30126
|
-
return /* @__PURE__ */
|
|
30219
|
+
return /* @__PURE__ */ jsx157(ColorModeProvider, {
|
|
30127
30220
|
colorMode,
|
|
30128
30221
|
setColorMode,
|
|
30129
|
-
children: /* @__PURE__ */
|
|
30222
|
+
children: /* @__PURE__ */ jsx157("div", {
|
|
30130
30223
|
className: "w-full relative",
|
|
30131
|
-
children: /* @__PURE__ */
|
|
30224
|
+
children: /* @__PURE__ */ jsxs67("div", {
|
|
30132
30225
|
style: { overflow: "hidden" },
|
|
30133
30226
|
children: [
|
|
30134
|
-
/* @__PURE__ */
|
|
30135
|
-
children: /* @__PURE__ */
|
|
30227
|
+
/* @__PURE__ */ jsx157("div", {
|
|
30228
|
+
children: /* @__PURE__ */ jsx157(BackgroundAnimation, {})
|
|
30136
30229
|
}),
|
|
30137
|
-
/* @__PURE__ */
|
|
30138
|
-
/* @__PURE__ */
|
|
30139
|
-
/* @__PURE__ */
|
|
30140
|
-
/* @__PURE__ */
|
|
30141
|
-
/* @__PURE__ */
|
|
30230
|
+
/* @__PURE__ */ jsx157("br", {}),
|
|
30231
|
+
/* @__PURE__ */ jsx157("br", {}),
|
|
30232
|
+
/* @__PURE__ */ jsx157("br", {}),
|
|
30233
|
+
/* @__PURE__ */ jsx157("br", {}),
|
|
30234
|
+
/* @__PURE__ */ jsxs67("div", {
|
|
30142
30235
|
className: "max-w-[500px] lg:max-w-[1000px] m-auto pl-5 pr-5 overflow-x-clip md:overflow-x-visible relative",
|
|
30143
30236
|
children: [
|
|
30144
|
-
/* @__PURE__ */
|
|
30145
|
-
/* @__PURE__ */
|
|
30146
|
-
/* @__PURE__ */
|
|
30147
|
-
/* @__PURE__ */
|
|
30148
|
-
/* @__PURE__ */
|
|
30149
|
-
/* @__PURE__ */
|
|
30150
|
-
/* @__PURE__ */
|
|
30151
|
-
/* @__PURE__ */
|
|
30152
|
-
/* @__PURE__ */
|
|
30153
|
-
/* @__PURE__ */
|
|
30154
|
-
/* @__PURE__ */
|
|
30155
|
-
/* @__PURE__ */
|
|
30156
|
-
/* @__PURE__ */
|
|
30157
|
-
/* @__PURE__ */
|
|
30158
|
-
/* @__PURE__ */
|
|
30159
|
-
/* @__PURE__ */
|
|
30237
|
+
/* @__PURE__ */ jsx157(WriteInReact, {}),
|
|
30238
|
+
/* @__PURE__ */ jsx157("br", {}),
|
|
30239
|
+
/* @__PURE__ */ jsx157(IfYouKnowReact, {}),
|
|
30240
|
+
/* @__PURE__ */ jsx157(ParameterizeAndEdit, {}),
|
|
30241
|
+
/* @__PURE__ */ jsx157(RealMP4Videos, {}),
|
|
30242
|
+
/* @__PURE__ */ jsx157("br", {}),
|
|
30243
|
+
/* @__PURE__ */ jsx157("br", {}),
|
|
30244
|
+
/* @__PURE__ */ jsx157("br", {}),
|
|
30245
|
+
/* @__PURE__ */ jsx157(VideoAppsShowcase_default, {}),
|
|
30246
|
+
/* @__PURE__ */ jsx157("br", {}),
|
|
30247
|
+
/* @__PURE__ */ jsx157("br", {}),
|
|
30248
|
+
/* @__PURE__ */ jsx157(Demo, {}),
|
|
30249
|
+
/* @__PURE__ */ jsx157("br", {}),
|
|
30250
|
+
/* @__PURE__ */ jsx157("br", {}),
|
|
30251
|
+
/* @__PURE__ */ jsx157("br", {}),
|
|
30252
|
+
/* @__PURE__ */ jsx157(SectionTitle, {
|
|
30160
30253
|
children: "Pricing"
|
|
30161
30254
|
}),
|
|
30162
|
-
/* @__PURE__ */
|
|
30163
|
-
/* @__PURE__ */
|
|
30164
|
-
/* @__PURE__ */
|
|
30165
|
-
/* @__PURE__ */
|
|
30166
|
-
/* @__PURE__ */
|
|
30167
|
-
/* @__PURE__ */
|
|
30168
|
-
/* @__PURE__ */
|
|
30169
|
-
/* @__PURE__ */
|
|
30170
|
-
/* @__PURE__ */
|
|
30171
|
-
/* @__PURE__ */
|
|
30172
|
-
/* @__PURE__ */
|
|
30173
|
-
/* @__PURE__ */
|
|
30174
|
-
/* @__PURE__ */
|
|
30175
|
-
/* @__PURE__ */
|
|
30176
|
-
/* @__PURE__ */
|
|
30177
|
-
/* @__PURE__ */
|
|
30178
|
-
/* @__PURE__ */
|
|
30179
|
-
/* @__PURE__ */
|
|
30180
|
-
/* @__PURE__ */
|
|
30181
|
-
/* @__PURE__ */
|
|
30255
|
+
/* @__PURE__ */ jsx157(Pricing, {}),
|
|
30256
|
+
/* @__PURE__ */ jsx157(TrustedByBanner_default, {}),
|
|
30257
|
+
/* @__PURE__ */ jsx157("br", {}),
|
|
30258
|
+
/* @__PURE__ */ jsx157(EvaluateRemotion_default, {}),
|
|
30259
|
+
/* @__PURE__ */ jsx157("br", {}),
|
|
30260
|
+
/* @__PURE__ */ jsx157("br", {}),
|
|
30261
|
+
/* @__PURE__ */ jsx157("br", {}),
|
|
30262
|
+
/* @__PURE__ */ jsx157(CommunityStats_default, {}),
|
|
30263
|
+
/* @__PURE__ */ jsx157("br", {}),
|
|
30264
|
+
/* @__PURE__ */ jsx157("br", {}),
|
|
30265
|
+
/* @__PURE__ */ jsx157("br", {}),
|
|
30266
|
+
/* @__PURE__ */ jsx157(EditorStarterSection_default, {}),
|
|
30267
|
+
/* @__PURE__ */ jsx157("br", {}),
|
|
30268
|
+
/* @__PURE__ */ jsx157("br", {}),
|
|
30269
|
+
/* @__PURE__ */ jsx157("br", {}),
|
|
30270
|
+
/* @__PURE__ */ jsx157("br", {}),
|
|
30271
|
+
/* @__PURE__ */ jsx157(NewsletterButton, {}),
|
|
30272
|
+
/* @__PURE__ */ jsx157("br", {}),
|
|
30273
|
+
/* @__PURE__ */ jsx157("br", {}),
|
|
30274
|
+
/* @__PURE__ */ jsx157("br", {})
|
|
30182
30275
|
]
|
|
30183
30276
|
})
|
|
30184
30277
|
]
|