Add creator attribution to settings tab in App component

This commit is contained in:
Jamie Pine
2026-01-25 19:15:33 -08:00
parent d9de8f04f2
commit a7463968e4
+12 -1
View File
@@ -151,13 +151,24 @@ function App() {
<UpdateNotification />
{activeTab === 'settings' ? (
<div className="space-y-4 overflow-y-auto">
<div className="space-y-4 overflow-y-auto flex flex-col">
<div className="grid gap-4 md:grid-cols-2">
<ConnectionForm />
<ServerStatus />
</div>
{isTauri() && <UpdateStatus />}
<ModelManagement />
<div className="py-8 text-center text-sm text-muted-foreground">
Created by{' '}
<a
href="https://github.com/jamiepine"
target="_blank"
rel="noopener noreferrer"
className="text-accent hover:underline"
>
Jamie Pine
</a>
</div>
</div>
) : (
// Main view: Profiles top left, Generator bottom left, History right