forked from 77media/video-flow
更新 付费文案&脚本助手描述
This commit is contained in:
parent
1ccb69e747
commit
d16970c45b
@ -23,7 +23,7 @@ export default function PricingPage() {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<DashboardLayout>
|
<DashboardLayout>
|
||||||
<div className="w-full h-full overflow-y-auto bg-black text-white pb-[10rem]" id="pricing-page">
|
<div className="w-full h-full overflow-y-auto bg-black text-white" id="pricing-page">
|
||||||
{/* Main Content */}
|
{/* Main Content */}
|
||||||
<HomeModule5 />
|
<HomeModule5 />
|
||||||
</div>
|
</div>
|
||||||
@ -136,7 +136,7 @@ function HomeModule5() {
|
|||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
data-alt="core-value-section"
|
data-alt="core-value-section"
|
||||||
className="home-module5 relative flex flex-col items-center justify-center w-full bg-black snap-start
|
className="relative flex flex-col items-center justify-center w-full bg-black snap-start
|
||||||
min-h-[100vh] py-8
|
min-h-[100vh] py-8
|
||||||
sm:min-h-[100vh] sm:py-12
|
sm:min-h-[100vh] sm:py-12
|
||||||
md:h-[1000px] md:py-16
|
md:h-[1000px] md:py-16
|
||||||
@ -163,7 +163,7 @@ function HomeModule5() {
|
|||||||
xl:text-[3.375rem] xl:leading-[110%] xl:mb-[1.5rem]
|
xl:text-[3.375rem] xl:leading-[110%] xl:mb-[1.5rem]
|
||||||
2xl:text-[3.5rem] 2xl:leading-[110%] 2xl:mb-[1.5rem]"
|
2xl:text-[3.5rem] 2xl:leading-[110%] 2xl:mb-[1.5rem]"
|
||||||
>
|
>
|
||||||
CREATE FOR $0.
|
Create All For Free
|
||||||
</h2>
|
</h2>
|
||||||
|
|
||||||
<p
|
<p
|
||||||
@ -181,7 +181,7 @@ function HomeModule5() {
|
|||||||
/* 大屏显示器字体 */
|
/* 大屏显示器字体 */
|
||||||
2xl:text-[1.8rem] 2xl:leading-[140%]"
|
2xl:text-[1.8rem] 2xl:leading-[140%]"
|
||||||
>
|
>
|
||||||
Remove watermark with Credits.
|
Just remove watermark with credits.
|
||||||
</p>
|
</p>
|
||||||
{/* 计费切换 */}
|
{/* 计费切换 */}
|
||||||
<div
|
<div
|
||||||
@ -256,12 +256,7 @@ function HomeModule5() {
|
|||||||
<div
|
<div
|
||||||
key={index}
|
key={index}
|
||||||
className="bg-black rounded-2xl border border-white/20
|
className="bg-black rounded-2xl border border-white/20
|
||||||
p-4 min-h-[28rem]
|
p-4 sm:p-5 md:p-6 lg:p-[1.375rem] xl:p-[1.5rem] 2xl:p-[1.75rem]"
|
||||||
sm:p-5 sm:min-h-[32rem]
|
|
||||||
md:p-6 md:min-h-[36rem]
|
|
||||||
lg:p-[1.375rem] lg:min-h-[37rem]
|
|
||||||
xl:p-[1.5rem] xl:min-h-[38.125rem]
|
|
||||||
2xl:p-[1.75rem] 2xl:min-h-[40rem]"
|
|
||||||
>
|
>
|
||||||
<h3
|
<h3
|
||||||
className="text-white font-normal
|
className="text-white font-normal
|
||||||
|
|||||||
@ -538,19 +538,21 @@ export function ChatInputBox({ noData }: { noData: boolean }) {
|
|||||||
<div className="hidden sm:block w-px h-4 bg-white/[0.20]"></div>
|
<div className="hidden sm:block w-px h-4 bg-white/[0.20]"></div>
|
||||||
|
|
||||||
{/* 剧本扩展开关 */}
|
{/* 剧本扩展开关 */}
|
||||||
<Tooltip title="Enable script expansion" placement="top" trigger={isDesktop ? "hover" : "click"}>
|
<Tooltip title="Activate AI Co-writer" placement="top" trigger={isDesktop ? "hover" : "click"}>
|
||||||
<div data-alt="config-expansion-mode" className="flex items-center gap-1 px-1">
|
<div data-alt="config-expansion-mode" className="flex items-center gap-1 px-1">
|
||||||
{/* 仅在未选中时显示背景色,避免覆盖选中态 */}
|
{/* 仅在未选中时显示背景色,避免覆盖选中态 */}
|
||||||
<div className={`${configOptions.expansion_mode ? 'bg-transparent' : 'bg-white/40'} rounded-full transition-colors flex`}>
|
<div className={`${configOptions.expansion_mode ? 'bg-transparent' : 'bg-white/40'} rounded-full transition-colors flex`}>
|
||||||
<Switch
|
<Switch
|
||||||
size="small"
|
size="small"
|
||||||
|
checkedChildren="On"
|
||||||
|
unCheckedChildren="Off"
|
||||||
checked={configOptions.expansion_mode}
|
checked={configOptions.expansion_mode}
|
||||||
disabled={configOptions.videoDuration === '8s'}
|
disabled={configOptions.videoDuration === '8s'}
|
||||||
onChange={(checked: boolean) => onConfigChange('expansion_mode', checked)}
|
onChange={(checked: boolean) => onConfigChange('expansion_mode', checked)}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<span className={`text-xs text-white hidden sm:inline`}>
|
<span className={`text-xs text-white hidden sm:inline`}>
|
||||||
{configOptions.expansion_mode ? 'On' : 'Off'}
|
Script Assistant
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
|
|||||||
@ -347,7 +347,7 @@ function HomeModule1() {
|
|||||||
/* 大屏显示器字体 */
|
/* 大屏显示器字体 */
|
||||||
2xl:text-[2.25rem] 2xl:leading-[140%] 2xl:mb-6"
|
2xl:text-[2.25rem] 2xl:leading-[140%] 2xl:mb-6"
|
||||||
>
|
>
|
||||||
One line, one film—your story, your scene.
|
Unlock the world's first free AI video agent.
|
||||||
</p>
|
</p>
|
||||||
<p
|
<p
|
||||||
className="text-white font-normal text-center
|
className="text-white font-normal text-center
|
||||||
@ -364,7 +364,7 @@ function HomeModule1() {
|
|||||||
/* 大屏显示器字体 */
|
/* 大屏显示器字体 */
|
||||||
2xl:text-[2.25rem] 2xl:leading-[140%] 2xl:mb-16"
|
2xl:text-[2.25rem] 2xl:leading-[140%] 2xl:mb-16"
|
||||||
>
|
>
|
||||||
Everyone is a movie master.
|
Your idea. One click. No cost.
|
||||||
</p>
|
</p>
|
||||||
<div
|
<div
|
||||||
className="flex justify-center items-center font-normal border border-white rounded-full bg-white/30 cursor-pointer
|
className="flex justify-center items-center font-normal border border-white rounded-full bg-white/30 cursor-pointer
|
||||||
@ -489,7 +489,7 @@ function HomeModule2() {
|
|||||||
/* 大屏显示器字体 */
|
/* 大屏显示器字体 */
|
||||||
2xl:text-[1.8rem] 2xl:leading-[140%]"
|
2xl:text-[1.8rem] 2xl:leading-[140%]"
|
||||||
>
|
>
|
||||||
Say your idea in a single line,and MovieFlow will bring it to life.
|
Say your idea in a single line, and MovieFlow will bring it to life.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
@ -1270,7 +1270,7 @@ function HomeModule5() {
|
|||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
data-alt="core-value-section"
|
data-alt="core-value-section"
|
||||||
className="home-module5 relative flex flex-col items-center justify-center w-full bg-black snap-start
|
className="relative flex flex-col items-center justify-center w-full bg-black snap-start
|
||||||
/* 移动端适配 */
|
/* 移动端适配 */
|
||||||
min-h-[100vh] py-8
|
min-h-[100vh] py-8
|
||||||
/* 平板适配 */
|
/* 平板适配 */
|
||||||
@ -1315,7 +1315,7 @@ function HomeModule5() {
|
|||||||
/* 大屏显示器字体 */
|
/* 大屏显示器字体 */
|
||||||
2xl:text-[3.5rem] 2xl:leading-[110%] 2xl:mb-[1.5rem]"
|
2xl:text-[3.5rem] 2xl:leading-[110%] 2xl:mb-[1.5rem]"
|
||||||
>
|
>
|
||||||
CREATE FOR $0.
|
Create All For Free
|
||||||
</h2>
|
</h2>
|
||||||
|
|
||||||
<p
|
<p
|
||||||
@ -1333,7 +1333,7 @@ function HomeModule5() {
|
|||||||
/* 大屏显示器字体 */
|
/* 大屏显示器字体 */
|
||||||
2xl:text-[1.8rem] 2xl:leading-[140%]"
|
2xl:text-[1.8rem] 2xl:leading-[140%]"
|
||||||
>
|
>
|
||||||
Remove watermark with Credits.
|
Just remove watermark with credits.
|
||||||
</p>
|
</p>
|
||||||
{/* 计费切换 */}
|
{/* 计费切换 */}
|
||||||
<div
|
<div
|
||||||
@ -1416,18 +1416,7 @@ function HomeModule5() {
|
|||||||
<div
|
<div
|
||||||
key={index}
|
key={index}
|
||||||
className="bg-black rounded-2xl border border-white/20
|
className="bg-black rounded-2xl border border-white/20
|
||||||
/* 移动端卡片尺寸 */
|
p-4 sm:p-5 md:p-6 lg:p-[1.375rem] xl:p-[1.5rem] 2xl:p-[1.75rem]"
|
||||||
p-4 min-h-[28rem]
|
|
||||||
/* 平板卡片尺寸 */
|
|
||||||
sm:p-5 sm:min-h-[32rem]
|
|
||||||
/* 小屏笔记本卡片尺寸 */
|
|
||||||
md:p-6 md:min-h-[36rem]
|
|
||||||
/* 大屏笔记本卡片尺寸 */
|
|
||||||
lg:p-[1.375rem] lg:min-h-[37rem]
|
|
||||||
/* 桌面端卡片尺寸 */
|
|
||||||
xl:p-[1.5rem] xl:min-h-[38.125rem]
|
|
||||||
/* 大屏显示器卡片尺寸 */
|
|
||||||
2xl:p-[1.75rem] 2xl:min-h-[40rem]"
|
|
||||||
>
|
>
|
||||||
<h3
|
<h3
|
||||||
className="text-white font-normal
|
className="text-white font-normal
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user