|
|
@@ -277,7 +277,7 @@ function Screen() {
|
|
|
<>
|
|
|
<WindowContent>
|
|
|
<Routes>
|
|
|
- <Route path='/deepSeek' element={<DeekSeek />} />
|
|
|
+ <Route path='/' element={<DeekSeek />} />
|
|
|
</Routes>
|
|
|
</WindowContent>
|
|
|
</>
|
|
|
@@ -296,9 +296,7 @@ function Screen() {
|
|
|
<SideBar className={isHome ? styles["sidebar-show"] : ""} />
|
|
|
<WindowContent>
|
|
|
<Routes>
|
|
|
- <Route path={Path.Home} element={<Chat />} />
|
|
|
- {/* <Route path={'/record'} element={<Record />} /> */}
|
|
|
- <Route path={Path.Chat} element={<Chat />} />
|
|
|
+ <Route path='/chat' element={<Chat />} />
|
|
|
</Routes>
|
|
|
</WindowContent>
|
|
|
</>
|
|
|
@@ -311,7 +309,7 @@ function Screen() {
|
|
|
if (isSdNew) return <Sd />;
|
|
|
return (
|
|
|
<>
|
|
|
- {location.pathname === '/deepSeek' ? <DeepSeekApp /> : <BigModelApp />}
|
|
|
+ {location.pathname === '/chat' ? <BigModelApp /> : <DeepSeekApp />}
|
|
|
</>
|
|
|
);
|
|
|
};
|