NamH 00c944c0b5
Add empty model conversation (#254)
* add empty conversation model selection

Signed-off-by: James <james@jan.ai>

* chore: using secondary button instead of sidebar button

Signed-off-by: James <james@jan.ai>

---------

Signed-off-by: James <james@jan.ai>
Co-authored-by: James <james@jan.ai>
2023-10-02 19:36:10 -07:00

24 lines
599 B
TypeScript

import React from "react";
import SecondaryButton from "../SecondaryButton";
const SidebarFooter: React.FC = () => (
<div className="flex justify-between items-center gap-2">
<SecondaryButton
title={"Discord"}
onClick={() =>
window.electronAPI?.openExternalUrl("https://discord.gg/AsJ8krTT3N")
}
className="flex-1"
/>
<SecondaryButton
title={"Discord"}
onClick={() =>
window.electronAPI?.openExternalUrl("https://twitter.com/jan_dotai")
}
className="flex-1"
/>
</div>
);
export default React.memo(SidebarFooter);