feat: discord support

This commit is contained in:
Nevo David 2024-05-21 13:07:44 +07:00
parent e617dc3e5d
commit 550cabcfcf
2 changed files with 10 additions and 0 deletions

View File

@ -23,6 +23,7 @@ import isBetween from 'dayjs/plugin/isBetween';
import { ShowLinkedinCompany } from '@gitroom/frontend/components/launches/helpers/linkedin.component';
import { SettingsComponent } from '@gitroom/frontend/components/layout/settings.component';
import { Onboarding } from '@gitroom/frontend/components/onboarding/onboarding';
import { Support } from '@gitroom/frontend/components/layout/support';
dayjs.extend(utc);
dayjs.extend(weekOfYear);
@ -52,6 +53,7 @@ export const LayoutSettings = ({ children }: { children: ReactNode }) => {
<Toaster />
<ShowPostSelector />
<Onboarding />
<Support />
<div className="min-h-[100vh] w-full max-w-[1440px] mx-auto bg-primary px-[12px] text-white flex flex-col">
<div className="px-[23px] flex h-[80px] items-center justify-between z-[200] sticky top-0 bg-primary">
<Link href="/" className="text-2xl flex items-center gap-[10px]">

View File

@ -0,0 +1,8 @@
'use client';
export const Support = () => {
if (!process.env.NEXT_PUBLIC_DISCORD_SUPPORT) return null
return (
<div className="bg-[#612AD5] fixed right-[20px] bottom-[20px] z-[500] p-[20px] text-white rounded-[20px] cursor-pointer" onClick={() => window.open(process.env.NEXT_PUBLIC_DISCORD_SUPPORT)}>Discord Support</div>
)
}