File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ import { NavigationMenu } from "./navigationMenu";
88import { RepositoryCarousel } from "./repositoryCarousel" ;
99import { SearchBar } from "./searchBar" ;
1010import { Separator } from "@/components/ui/separator" ;
11+ import { SymbolIcon } from "@radix-ui/react-icons" ;
1112
1213
1314export default async function Home ( ) {
@@ -110,15 +111,12 @@ const RepositoryList = async () => {
110111 const repos = _repos . List . Repos . map ( ( repo ) => repo . Repository ) ;
111112
112113 if ( repos . length === 0 ) {
113- return < span >
114- Get started
115- < a
116- href = "https://github.com/TaqlaAI/sourcebot/blob/main/README.md"
117- className = "text-blue-500"
118- >
119- { ` configuring Sourcebot.` }
120- </ a >
121- </ span > ;
114+ return (
115+ < div className = "flex flex-row items-center gap-3" >
116+ < SymbolIcon className = "h-4 w-4 animate-spin" />
117+ < span className = "text-sm" > indexing in progress...</ span >
118+ </ div >
119+ )
122120 }
123121
124122 return (
You can’t perform that action at this time.
0 commit comments