文案调整+-

This commit is contained in:
海龙 2025-08-31 04:43:14 +08:00
parent 85f68a5462
commit c912e0da92
2 changed files with 8 additions and 3 deletions

View File

@ -39,7 +39,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<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="robots" content="noindex" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />

View File

@ -17,6 +17,7 @@ import {
ImagePlay,
Sparkles,
Settings,
MoreHorizontal,
} from "lucide-react";
import {
Dropdown,
@ -968,7 +969,7 @@ export function ChatInputBox({ noData }: { noData: boolean }) {
{!isExpanded && (
<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
value={script}
@ -1143,7 +1144,10 @@ const ConfigOptions = ({
];
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) => {
const IconComponent = item.icon;
const currentOption = item.options.find(
@ -1178,6 +1182,7 @@ const ConfigOptions = ({
{currentOption?.isVip && (
<Crown className={`w-2 h-2 text-yellow-500`} />
)}
<MoreHorizontal className="w-2.5 h-2.5 text-white/60" />
</button>
</Dropdown>
);