Skip to content

Commit

Permalink
docs: clientOnly for filter
Browse files Browse the repository at this point in the history
  • Loading branch information
manudeli committed Dec 20, 2024
1 parent 00e73c9 commit 9485f2e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docs/suspensive.org/src/components/HomePage.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { ClientOnly } from '@suspensive/react'
import { motion } from 'motion/react'
import Image from 'next/image'
import Link from 'next/link'
Expand Down Expand Up @@ -31,8 +32,10 @@ export const HomePage = ({

return (
<>
<StarCanvasClose />
<StarCanvasFar />
<ClientOnly>
<StarCanvasClose />
</ClientOnly>
<motion.section
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
Expand Down

0 comments on commit 9485f2e

Please sign in to comment.