mirror of
https://github.com/Anil-matcha/Open-Generative-AI.git
synced 2026-05-07 01:17:18 +00:00
- Migrated from Vite/vanilla JS to Next.js App Router - Added packages/studio: shared React component library (ImageStudio, VideoStudio, LipSyncStudio, CinemaStudio) - BYOK flow via StandaloneShell (localStorage API key) + ApiKeyModal - Fixed dropdown clipping caused by overflow-x-auto on controls row - Fixed dropdown background to solid bg-[#111] (was glass/transparent) - Renamed Cinema tab to Cinema Studio - Updated README: architecture, quick start port (3000), tech stack Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
9 lines
204 B
JavaScript
9 lines
204 B
JavaScript
import StandaloneShell from '@/components/StandaloneShell';
|
|
|
|
export const metadata = {
|
|
title: 'Studio — Open Higgsfield AI',
|
|
};
|
|
|
|
export default function StudioPage() {
|
|
return <StandaloneShell />;
|
|
}
|