Add sticky banner for youtube

This commit is contained in:
Kamran Ahmed
2021-09-05 21:58:44 +02:00
parent 333894b75b
commit 0f713cbfd8
3 changed files with 29 additions and 0 deletions

View File

@ -5,6 +5,7 @@ import 'prism-themes/themes/prism-shades-of-purple.css';
import { roadmapTheme } from '../styles/theme';
import { firePageView } from '../lib/gtag';
import '../styles/carbon.css';
import { StickyBanner } from '../components/sticky-banner';
function MyApp({ Component, pageProps }: AppProps) {
useEffect(() => {
@ -13,6 +14,7 @@ function MyApp({ Component, pageProps }: AppProps) {
return (
<ChakraProvider theme={roadmapTheme}>
<StickyBanner />
<Component {...pageProps} />
</ChakraProvider>
);