Skip to content

Commit

Permalink
fix(create-guild): make confetti work again
Browse files Browse the repository at this point in the history
  • Loading branch information
dovalid committed Aug 15, 2024
1 parent 9adf571 commit 3d590fb
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,19 @@ export default function RootLayout({ children }: RootLayoutProps) {
<PostHogPageViews />
</Suspense>
</Providers>

<canvas
id="js-confetti-canvas"
style={{
position: "fixed",
width: "100%",
height: "100%",
top: 0,
left: 0,
zIndex: 10001,
pointerEvents: "none",
}}
/>
</body>
</html>
)
Expand Down

0 comments on commit 3d590fb

Please sign in to comment.