BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/fancy/gooey-svg-filter-menu-demo

Gooey Svg Filter Menu Demo

fancy/gooey-svg-filter-menu-demo
FreeBlock

A block component.

Install it

npx shadcn@latest add https://www.fancycomponents.dev/r/gooey-svg-filter-menu-demo.json

Source

examples/filter/gooey-svg-filter-menu-demo.tsxwww.fancycomponents.dev/r/gooey-svg-filter-menu-demo.json
1import { useState } from "react"
2import { AnimatePresence, motion } from "motion/react"
3import { Home, Mail, Menu, Settings, User, X } from "lucide-react"
4
5import useDetectBrowser from "@/hooks/use-detect-browser"
6import GooeySvgFilter from "@/components/fancy/filter/gooey-svg-filter"
7
8const MENU_ITEMS = [
9 { icon: Home, label: "Home" },
10 { icon: Mail, label: "Contact" },
11 { icon: User, label: "Profile" },
12 { icon: Settings, label: "Settings" },
13]
14
15export default function GooeyDemo() {
16 const [isOpen, setIsOpen] = useState(false)
17 const browser = useDetectBrowser()
18 const isSafari = browser === "Safari"
19
20 return (
21 <div className="relative w-dvw h-dvh flex items-center justify-center dark:bg-black bg-white">
22 <GooeySvgFilter id="gooey-filter-menu" strength={5} />
23
24 <div
25 className="absolute top-4 left-4"
26 style={{ filter: "url(#gooey-filter-menu)" }}
27 >
28 {/* Menu Items */}
29 <AnimatePresence>
30 {isOpen &&
31 MENU_ITEMS.map((item, index) => {
32 const Icon = item.icon
33 return (
34 <motion.button
35 key={item.label}
36 className="absolute w-12 h-12 bg-[#efefef] rounded-full flex items-center justify-center"
37 initial={{ x: 0, opacity: 0 }}
38 animate={{
39 y: (index + 1) * 44,
40 opacity: 1,
41 }}
42 exit={{
43 y: 0,
44 opacity: 0,
45 transition: {
46 delay:
47 (MENU_ITEMS.length - index) * (isSafari ? 0.0 : 0.05),
48 duration: isSafari ? 0 : 0.4,
49 type: "spring",
50 bounce: 0,
51 },
52 }}
53 transition={{
54 delay: index * (isSafari ? 0.0 : 0.05),
55 duration: isSafari ? 0 : 0.4,
56 type: "spring",
57 bounce: 0,
58 }}
59 >
60 <AnimatePresence mode="wait">
61 <motion.div
62 key={item.label}
63 initial={{ opacity: 0, filter: "blur(10px)" }}
64 animate={{ opacity: 1, filter: "blur(0px)" }}
65 exit={{ opacity: 0, filter: "blur(10px)" }}
66 transition={{
67 delay: index * (isSafari ? 0.0 : 0.05),
68// … truncated

What it pulls in

npm packages

  • motion
  • lucide-react

Other registry items

  • hooks/use-detect-browser
  • fancy/filter/gooey-svg-filter

Files it writes

  • examples/filter/gooey-svg-filter-menu-demo

Facts

Registry
fancy
Type
registry:block
Access
Free
Files written
1
Licence
the repository states none
First indexed
2026-08-02
Last confirmed
today

Go to the source

www.fancycomponents.dev danielpetho/fancy on GitHub Raw registry item This item as JSON

More from fancy

All 158 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
Animated Gradient Demoanimated-gradient-demofancyBlocksFreeno deps
Basic Number Ticker Demobasic-number-ticker-demofancyBlocksFreeno deps
Box Carousel Autoplay Demobox-carousel-autoplay-demofancyBlocksFree1 dep
Box Carousel Demobox-carousel-demofancyBlocksFree1 dep
Box Carousel Video Demobox-carousel-video-demofancyBlocksFree1 dep
Breathing Text Demobreathing-text-demofancyBlocksFreeno deps
Circling Elements Democircling-elements-demofancyBlocksFreeno deps
Circling Elements Easing Democircling-elements-easing-demofancyBlocksFreeno deps
BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex

BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex

BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex