forked from 77media/video-flow
文案调整+-
This commit is contained in:
parent
85f68a5462
commit
c912e0da92
@ -39,7 +39,7 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<head>
|
<head>
|
||||||
<title>MovieFlow - AI Film Studio</title>
|
<title>MovieFlow - AI Movie Studio</title>
|
||||||
<meta name="description" content="Share your story, or just a few words, and our AI turns it into a great film. We remove the barriers to creation. At MovieFlow, everyone is a movie master." />
|
<meta name="description" content="Share your story, or just a few words, and our AI turns it into a great film. We remove the barriers to creation. At MovieFlow, everyone is a movie master." />
|
||||||
<meta name="robots" content="noindex" />
|
<meta name="robots" content="noindex" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
|||||||
@ -17,6 +17,7 @@ import {
|
|||||||
ImagePlay,
|
ImagePlay,
|
||||||
Sparkles,
|
Sparkles,
|
||||||
Settings,
|
Settings,
|
||||||
|
MoreHorizontal,
|
||||||
} from "lucide-react";
|
} from "lucide-react";
|
||||||
import {
|
import {
|
||||||
Dropdown,
|
Dropdown,
|
||||||
@ -968,7 +969,7 @@ export function ChatInputBox({ noData }: { noData: boolean }) {
|
|||||||
{!isExpanded && (
|
{!isExpanded && (
|
||||||
<div className="flex flex-col gap-3 w-full pl-3">
|
<div className="flex flex-col gap-3 w-full pl-3">
|
||||||
{/* 第一行:输入框 */}
|
{/* 第一行:输入框 */}
|
||||||
<div className="video-prompt-editor relative flex flex-col gap-3 flex-1">
|
<div className="video-prompt-editor relative flex flex-col gap-3 flex-1 pr-10">
|
||||||
{/* 文本输入框 - 改为textarea */}
|
{/* 文本输入框 - 改为textarea */}
|
||||||
<textarea
|
<textarea
|
||||||
value={script}
|
value={script}
|
||||||
@ -1143,7 +1144,10 @@ const ConfigOptions = ({
|
|||||||
];
|
];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={`flex items-center p-2 gap-2`}>
|
<div
|
||||||
|
data-alt="config-options"
|
||||||
|
className="flex items-center p-2 gap-2 bg-white/10 backdrop-blur-md rounded-lg"
|
||||||
|
>
|
||||||
{configItems.map((item) => {
|
{configItems.map((item) => {
|
||||||
const IconComponent = item.icon;
|
const IconComponent = item.icon;
|
||||||
const currentOption = item.options.find(
|
const currentOption = item.options.find(
|
||||||
@ -1178,6 +1182,7 @@ const ConfigOptions = ({
|
|||||||
{currentOption?.isVip && (
|
{currentOption?.isVip && (
|
||||||
<Crown className={`w-2 h-2 text-yellow-500`} />
|
<Crown className={`w-2 h-2 text-yellow-500`} />
|
||||||
)}
|
)}
|
||||||
|
<MoreHorizontal className="w-2.5 h-2.5 text-white/60" />
|
||||||
</button>
|
</button>
|
||||||
</Dropdown>
|
</Dropdown>
|
||||||
);
|
);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user