Update settings page defaults to reflect current providers and add helpful descriptions
This commit is contained in:
parent
5b2ef4c8f2
commit
c7ef5ee2ef
1 changed files with 19 additions and 12 deletions
|
|
@ -129,11 +129,10 @@ export default function SettingsPage() {
|
|||
<button
|
||||
key={tab.id}
|
||||
onClick={() => setActiveTab(tab.id)}
|
||||
className={`flex items-center gap-2 px-4 py-2 rounded-lg transition-colors ${
|
||||
activeTab === tab.id
|
||||
className={`flex items-center gap-2 px-4 py-2 rounded-lg transition-colors ${activeTab === tab.id
|
||||
? 'bg-forge-yellow/10 text-forge-yellow'
|
||||
: 'text-gray-400 hover:text-white hover:bg-forge-gray'
|
||||
}`}
|
||||
}`}
|
||||
>
|
||||
<tab.icon className="w-4 h-4" />
|
||||
{tab.label}
|
||||
|
|
@ -347,12 +346,13 @@ export default function SettingsPage() {
|
|||
onChange={(e) => setDefaultImageProvider(e.target.value)}
|
||||
className="select-field"
|
||||
>
|
||||
<option value="openai">OpenAI DALL-E</option>
|
||||
<option value="stability">Stability AI</option>
|
||||
<option value="leonardo">Leonardo AI</option>
|
||||
<option value="openai">OpenAI DALL-E 3</option>
|
||||
<option value="flux">Flux Pro</option>
|
||||
<option value="ideogram">Ideogram</option>
|
||||
<option value="flux">Flux</option>
|
||||
</select>
|
||||
<p className="text-xs text-gray-500 mt-1">
|
||||
Default: OpenAI DALL-E 3
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
|
|
@ -364,9 +364,12 @@ export default function SettingsPage() {
|
|||
onChange={(e) => setDefaultVideoProvider(e.target.value)}
|
||||
className="select-field"
|
||||
>
|
||||
<option value="runway">Runway Gen-3</option>
|
||||
<option value="veo">Google Veo</option>
|
||||
<option value="runway">Runway Gen-3 Alpha Turbo</option>
|
||||
<option value="veo">Google Veo 2</option>
|
||||
</select>
|
||||
<p className="text-xs text-gray-500 mt-1">
|
||||
Default: Runway Gen-3 Alpha Turbo
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
|
|
@ -379,10 +382,14 @@ export default function SettingsPage() {
|
|||
className="select-field"
|
||||
>
|
||||
<option value="">Select a default voice...</option>
|
||||
<option value="21m00Tcm4TlvDq8ikWAM">Rachel</option>
|
||||
<option value="AZnzlk1XvdvUeBnXmlld">Domi</option>
|
||||
<option value="EXAVITQu4vr4xnSDxMaL">Bella</option>
|
||||
<option value="21m00Tcm4TlvDq8ikWAM">Rachel (Female, American)</option>
|
||||
<option value="ErXwobaYiN019PkySvjV">Antoni (Male, American)</option>
|
||||
<option value="AZnzlk1XvdvUeBnXmlld">Domi (Female, American)</option>
|
||||
<option value="EXAVITQu4vr4xnSDxMaL">Bella (Female, American)</option>
|
||||
</select>
|
||||
<p className="text-xs text-gray-500 mt-1">
|
||||
Powered by ElevenLabs
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue