BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/tripled/animated-quote-block-shadcnui

Animated Quote Block

tripled/animated-quote-block-shadcnui
FreeComponent

Quote that types itself in, pauses, then subtly breathes

Install it

npx shadcn@latest add https://ui.tripled.work/r/animated-quote-block-shadcnui.json

Source

@uitripled/react-shadcn/src/components/motion-core/animated-quote-block.tsxui.tripled.work/r/animated-quote-block-shadcnui.json
1"use client";
2
3import { AnimatePresence, motion } from "framer-motion";
4import { useEffect, useState } from "react";
5
6type AnimatedQuoteBlockProps = {
7 quote?: string;
8 author?: string;
9 typingSpeed?: number;
10};
11
12export function AnimatedQuoteBlock({
13 quote = "The only way to do great work is to love what you do.",
14 author = "Steve Jobs",
15 typingSpeed = 50,
16}: AnimatedQuoteBlockProps) {
17 const [displayedText, setDisplayedText] = useState("");
18 const [isTyping, setIsTyping] = useState(true);
19 const [showPulse, setShowPulse] = useState(false);
20
21 useEffect(() => {
22 let index = 0;
23 const timer = setInterval(() => {
24 if (index < quote.length) {
25 setDisplayedText(quote.slice(0, index + 1));
26 index++;
27 } else {
28 setIsTyping(false);
29 setShowPulse(true);
30 clearInterval(timer);
31 }
32 }, typingSpeed);
33
34 return () => clearInterval(timer);
35 }, [quote, typingSpeed]);
36
37 return (
38 <div className="w-full max-w-2xl rounded-2xl border border-border bg-card p-8">
39 <motion.div
40 animate={{
41 scale: showPulse ? [1, 1.02, 1] : 1,
42 }}
43 transition={{
44 duration: 2,
45 repeat: showPulse ? Infinity : 0,
46 ease: "easeInOut",
47 }}
48 className="relative"
49 >
50 <div className="text-4xl font-bold text-primary">"</div>
51
52 <div className="py-4 text-xl leading-relaxed">
53 <AnimatePresence mode="wait">
54 {isTyping ? (
55 <motion.span
56 key="typing"
57 initial={{ opacity: 0 }}
58 animate={{ opacity: 1 }}
59 exit={{ opacity: 0 }}
60 >
61 {displayedText}
62 <motion.span
63 animate={{ opacity: [1, 0, 1] }}
64 transition={{ duration: 0.8, repeat: Infinity }}
65 className="inline-block w-0.5 bg-current"
66 />
67 </motion.span>
68 ) : (
69 <motion.span
70 key="complete"
71 initial={{ opacity: 0 }}
72 animate={{ opacity: 1 }}
73 >
74 {quote}
75 </motion.span>
76 )}
77 </AnimatePresence>
78 </div>
79
80 <div className="mt-4 text-right text-sm text-muted-foreground">
81 - {author}
82 </div>
83 </motion.div>
84 </div>
85 );
86}

What it pulls in

npm packages

  • framer-motion
  • react

Files it writes

  • @uitripled/react-shadcn/src/components/motion-core/animated-quote-block.tsx

Facts

Registry
tripled
Type
registry:ui
Access
Free
Files written
1
Licence
MIT
In the index
at or before 2026-08-10
Last confirmed
3 days ago

Go to the source

ui.tripled.work moumen-soliman/uitripled on GitHub Raw registry item This item as JSON

More from tripled

All 282 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
AI Chat Interfaceai-chat-interface-shadcnuitripledComponentsFree2 deps
AI Glow Inputai-glow-input-shadcnuitripledComponentsFree2 deps
AI Loading Skeletonai-loading-skeleton-shadcnuitripledComponentsFree2 deps
AI Response Typing Streamai-response-typing-shadcnuitripledComponentsFree2 deps
AI Unlock Animationai-unlock-animation-shadcnuitripledComponentsFree2 deps
Animated Accordionanimated-accordion-shadcnuitripledComponentsFree2 deps
Animated Card Stackanimated-card-stack-baseuitripledComponentsFree2 deps
Animated Card Stackanimated-card-stack-shadcnuitripledComponentsFree2 deps

Also from Kynth Studios

Built for the same person as BlockDex

SkillWorks

Claude Code skills and plugins, scored

skillworks.kynth.studio

RuleStack

AGENTS.md gallery and agent-config comparison

rulestack.kynth.studio

ToolDrift

What the AI coding tools changed last night

tooldrift.kynth.studio

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

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

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

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

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

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

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex