feat: added "powered by" info to 3rd party powered features

This commit is contained in:
Xiaohan-Tian
2026-04-17 18:02:08 -07:00
parent 7d10d37b4f
commit 5ca1358795
2 changed files with 32 additions and 0 deletions
+20
View File
@@ -129,6 +129,26 @@
font-weight: 600; font-weight: 600;
} }
.kgone-powered-by {
color: #666;
font-size: 10px;
text-align: center;
margin-top: 12px;
padding-top: 8px;
border-top: 1px solid #333;
}
.kgone-powered-by a {
color: #888;
text-decoration: none;
font-weight: 600;
}
.kgone-powered-by a:hover {
color: #aaa;
text-decoration: underline;
}
/* Two-column row (e.g. note + scale) */ /* Two-column row (e.g. note + scale) */
.kgone-row { .kgone-row {
display: flex; display: flex;
+12
View File
@@ -503,6 +503,10 @@ const ClipTab: React.FC<ClipTabProps> = ({ bpm, keySignature }) => {
{/* Status hint below button */} {/* Status hint below button */}
{genHint && <div className="kgone-gen-hint">{genHint}</div>} {genHint && <div className="kgone-gen-hint">{genHint}</div>}
<div className="kgone-powered-by">
Powered by <a href="https://huggingface.co/RoyalCities/Foundation-1" target="_blank" rel="noopener noreferrer">Foundation-1</a>
</div>
</> </>
); );
}; };
@@ -791,6 +795,10 @@ const FullSongTab: React.FC = () => {
</button> </button>
{genHint && <div className="kgone-gen-hint">{genHint}</div>} {genHint && <div className="kgone-gen-hint">{genHint}</div>}
<div className="kgone-powered-by">
Powered by <a href="https://github.com/ace-step/ACE-Step-1.5" target="_blank" rel="noopener noreferrer">ACE-Step 1.5</a>
</div>
</> </>
); );
}; };
@@ -1159,6 +1167,10 @@ const SeparatorTab: React.FC = () => {
Only audio regions are supported MIDI regions cannot be separated. Only audio regions are supported MIDI regions cannot be separated.
</div> </div>
)} )}
<div className="kgone-powered-by">
Powered by <a href="https://github.com/nomadkaraoke/python-audio-separator" target="_blank" rel="noopener noreferrer">UVR5 CLI</a>
</div>
</> </>
); );
}; };