forked from lobehub/lobe-chat
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
β»οΈ refactor: Refactor Market Layout (lobehub#2320)
* β»οΈ refactor: Refactor Market Layout * β»οΈ refactor: Market Layout * β»οΈ refactor: Market Layout * π fix: Fix spotlight * π fix: Fix isEqual * π style: Update market style * π style: Update Market Style --------- Co-authored-by: Arvin Xu <arvinx@foxmail.com>
- Loading branch information
1 parent
f7a0f46
commit c05c3c1
Showing
46 changed files
with
620 additions
and
525 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import ServerLayout from '@/components/server/ServerLayout'; | ||
import { isMobileDevice } from '@/utils/responsive'; | ||
|
||
import Desktop from './_layout/Desktop'; | ||
import Mobile from './_layout/Mobile'; | ||
import AgentDetailContent from './features/AgentDetailContent'; | ||
|
||
const Layout = ServerLayout({ Desktop, Mobile }); | ||
|
||
const Detail = () => { | ||
const mobile = isMobileDevice(); | ||
return ( | ||
<Layout> | ||
<AgentDetailContent mobile={mobile} /> | ||
</Layout> | ||
); | ||
}; | ||
|
||
Detail.displayName = 'AgentDetail'; | ||
|
||
export default Detail; |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.