feat(chat): added chat interface and connection to ollama #10

Merged
sharang merged 6 commits from feat/CAI-20 into main 2026-02-20 19:40:26 +00:00
2 changed files with 30 additions and 0 deletions
Showing only changes of commit b7df8222bb - Show all commits

View File

@@ -215,6 +215,31 @@ h6 {
color: var(--accent);
}
.sidebar-legal {
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
margin-top: 4px;
}
.legal-link {
font-size: 11px;
color: var(--text-dimmest);
text-decoration: none;
transition: color 0.15s ease;
}
.legal-link:hover {
color: var(--text-secondary);
}
.legal-sep {
font-size: 10px;
color: var(--text-dimmest);
opacity: 0.5;
}
.sidebar-version {
font-size: 11px;
color: var(--text-dimmest);

View File

@@ -245,6 +245,11 @@ fn SidebarFooter() -> Element {
Icon { icon: BsGrid, width: 16, height: 16 }
}
}
div { class: "sidebar-legal",
Link { to: Route::PrivacyPage {}, class: "legal-link", "Privacy Policy" }
span { class: "legal-sep", "|" }
Link { to: Route::ImpressumPage {}, class: "legal-link", "Impressum" }
}
p { class: "sidebar-version", "v{version}" }
}
}