diff --git a/apps/web/src/components/global/banners/GlobalBanner.tsx b/apps/web/src/components/global/banners/GlobalBanner.tsx index f45695f54..e6143f615 100644 --- a/apps/web/src/components/global/banners/GlobalBanner.tsx +++ b/apps/web/src/components/global/banners/GlobalBanner.tsx @@ -17,6 +17,7 @@ import useUserProfileWithProjectsProfile from '~/components/projects/common/useU import SponsorsAdFormatGlobalBanner from '~/components/sponsors/ads/SponsorsAdFormatGlobalBanner'; import Text from '~/components/ui/Text'; +import KombaiLogo from '../logos/KombaiLogo'; import SwagOverflowLogo from '../logos/SwagOverflowLogo'; import { useUserPreferences } from '../UserPreferencesProvider'; import GlobalBannerShell from './GlobalBannerShell'; @@ -135,11 +136,26 @@ function MarketingMessageImpl({ + variant="neutral" + onHide={hideBanner}> + + {data.text} + ); + // Return ( + // + // ); } break; } diff --git a/apps/web/src/components/global/logos/KombaiLogo.tsx b/apps/web/src/components/global/logos/KombaiLogo.tsx new file mode 100644 index 000000000..6b2751509 --- /dev/null +++ b/apps/web/src/components/global/logos/KombaiLogo.tsx @@ -0,0 +1,47 @@ +type Props = Readonly<{ + className?: string; + height?: number; + width?: number; +}>; + +export default function KombaiLogo({ + className, + height = 550, + width = 2013, +}: Props) { + return ( + + + + + + + + ); +}