This commit is contained in:
ct
2025-07-03 04:01:44 +08:00
parent 927a498dc3
commit 0dd7d82502
2 changed files with 8 additions and 3 deletions

View File

@@ -4,7 +4,7 @@ import { Button } from '@/components/ui/button';
import { cn } from '@/lib/utils';
import { useMitt } from '@/plugins/MittContext';
import useVideoEditorStore from '@/stores/VideoEditorStore';
import { Download, Edit3, GraduationCap, Play, Share2, Square } from 'lucide-react';
import { Download, GraduationCap, Play, Square, SquarePen } from 'lucide-react';
const EditorControls = ({ className = '', onEditClick = () => {}, isEditActive = false }) => {
const { videoIsPlaying } = useVideoEditorStore();
@@ -51,15 +51,19 @@ const EditorControls = ({ className = '', onEditClick = () => {}, isEditActive =
className="h-12 w-12 rounded-full border shadow-sm"
onClick={onEditClick}
>
<Edit3 className={`h-8 w-8 ${isEditActive ? 'text-white' : ''}`} />
<SquarePen className={`h-8 w-8 ${isEditActive ? 'text-white' : ''}`} />
</Button>
<Button onClick={handleDownloadButton} variant="outline" size="icon" className="h-12 w-12 rounded-full border shadow-sm">
<Download className="h-8 w-8" />
</Button>
<Button variant="outline" size="icon" className="h-12 w-12 rounded-full border shadow-sm">
{/* <Button variant="outline" size="icon" className="h-12 w-12 rounded-full border shadow-sm">
<Share2 className="h-8 w-8" />
</Button> */}
<Button variant="outline" size="icon" className="font-display h-12 w-12 rounded-full border font-bold shadow-sm">
AI
</Button>
<Button variant="outline" size="icon" className="h-12 w-12 rounded-full border shadow-sm">

View File

@@ -6,6 +6,7 @@ const Home = () => {
return (
<div className="min-h-screen bg-neutral-50 dark:bg-black">
<Editor />
{/* <div className="dark:bg-neutral-800">What is MEMEAIGEN?</div> */}
<FlashMessages />
<AuthUser />
</div>