-
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.
Merge pull request #141 from xi-effect/staging
Frontend Prod update №6 (22.10.24) #141
- Loading branch information
Showing
112 changed files
with
6,290 additions
and
4,975 deletions.
There are no files selected for viewing
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,20 @@ | ||
import dynamic from 'next/dynamic'; | ||
import { EmailConfirmation } from 'pkg.email-confirmation'; | ||
import React from 'react'; | ||
|
||
const Logo = dynamic(() => import('pkg.logo').then((mod) => mod.Logo), { ssr: false }); | ||
|
||
export default function ConfirmEmailPage() { | ||
return ( | ||
<div className="flex flex-wrap flex-col justify-center content-center w-screen h-[100dvh] xs:h-screen p-1"> | ||
<div className="flex flex-col py-12 xl:py-24 h-full px-6 w-full"> | ||
<div className="flex justify-center items-center h-8 p-1"> | ||
<Logo width={134} height={16} logoSize="default" logoVariant="navigation" /> | ||
</div> | ||
<div className="shrink-0 h-full flex flex-col justify-center items-center"> | ||
<EmailConfirmation /> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
} |
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
12 changes: 9 additions & 3 deletions
12
apps/xi.front/app/(protected)/communities/[community-id]/channels/[channel-id]/chat/page.tsx
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 |
---|---|---|
@@ -1,9 +1,15 @@ | ||
import React from 'react'; | ||
import dynamic from 'next/dynamic'; | ||
|
||
export default function Chats() { | ||
const Chat = dynamic(() => import('pkg.module.chat').then((mod) => mod.Chat)); | ||
|
||
export default function ChatPage() { | ||
return ( | ||
<div className="w-full md:w-[calc(100vw-350px)] md:min-h-screen md:h-screen md:overflow-auto bg-gray-0"> | ||
chat | ||
<div | ||
id="chat-container" | ||
className="w-full md:w-[calc(100vw-350px)] md:min-h-screen md:h-screen md:overflow-auto bg-gray-0 overflow-x-hidden" | ||
> | ||
<Chat /> | ||
</div> | ||
); | ||
} |
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
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 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
Oops, something went wrong.