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>
65 lines
2.6 KiB
JavaScript
65 lines
2.6 KiB
JavaScript
'use client';
|
|
|
|
import { useState } from 'react';
|
|
|
|
export default function ApiKeyModal({ onSave }) {
|
|
const [key, setKey] = useState('');
|
|
const [error, setError] = useState('');
|
|
|
|
const handleSubmit = (e) => {
|
|
e.preventDefault();
|
|
const trimmed = key.trim();
|
|
if (!trimmed) { setError('Please enter your API key'); return; }
|
|
onSave(trimmed);
|
|
};
|
|
|
|
return (
|
|
<div className="min-h-screen bg-[#050505] flex items-center justify-center px-4">
|
|
<div className="w-full max-w-md bg-[#0a0a0a] border border-white/10 rounded-3xl p-8">
|
|
<div className="flex flex-col items-center text-center mb-8">
|
|
<div className="w-16 h-16 bg-[#d9ff00]/10 rounded-2xl flex items-center justify-center border border-[#d9ff00]/20 mb-6">
|
|
<svg width="32" height="32" viewBox="0 0 24 24" fill="none" stroke="#d9ff00" strokeWidth="1.5">
|
|
<path d="M21 2l-2 2m-7.61 7.61a5.5 5.5 0 1 1-7.778 7.778 5.5 5.5 0 0 1 7.777-7.777zm0 0L15.5 7.5m0 0l3 3L12 17.25l-4.5-4.5L15.5 7.5z"/>
|
|
</svg>
|
|
</div>
|
|
<h1 className="text-2xl font-black text-white uppercase tracking-wider mb-2">
|
|
Open Higgsfield AI
|
|
</h1>
|
|
<p className="text-white/40 text-sm">
|
|
Enter your <a href="https://muapi.ai" target="_blank" rel="noreferrer" className="text-[#d9ff00] hover:underline">Muapi.ai</a> API key to start generating
|
|
</p>
|
|
</div>
|
|
|
|
<form onSubmit={handleSubmit} className="space-y-4">
|
|
<div>
|
|
<label className="block text-xs font-bold text-white/40 uppercase tracking-widest mb-2">
|
|
Muapi API Key
|
|
</label>
|
|
<input
|
|
type="password"
|
|
value={key}
|
|
onChange={(e) => { setKey(e.target.value); setError(''); }}
|
|
placeholder="Enter your API key..."
|
|
className="w-full bg-black/40 border border-white/5 rounded-xl px-4 py-3 text-white placeholder:text-white/20 focus:outline-none focus:border-[#d9ff00]/40 transition-colors"
|
|
/>
|
|
{error && <p className="mt-1 text-red-400 text-xs">{error}</p>}
|
|
</div>
|
|
|
|
<button
|
|
type="submit"
|
|
className="w-full bg-[#d9ff00] text-black font-black py-3 rounded-xl hover:opacity-90 transition-opacity"
|
|
>
|
|
Launch Studio
|
|
</button>
|
|
|
|
<p className="text-center text-xs text-white/30">
|
|
Don't have a key?{' '}
|
|
<a href="https://muapi.ai" target="_blank" rel="noreferrer" className="text-[#d9ff00] hover:underline">
|
|
Get one free at Muapi.ai →
|
|
</a>
|
|
</p>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|