加载中…
案例库 · 公开证据

source-aceternity prompt-public not-rerun license-review web-ui motion-3d
提示语
// components/ui/wobble-card.tsx "use client"; import React, { useState } from "react"; import { motion } from "motion/react"; import { cn } from "@/lib/utils"; export const WobbleCard =…

source-aceternity prompt-public not-rerun license-review web-ui motion-3d
提示语
// components/ui/text-flipping-board.tsx "use client"; import React, { useEffect, useRef, useState, useMemo } from "react"; import { motion } from "motion/react"; import { cn } from…

提示语
// components/ui/scales.tsx import { cn } from "@/lib/utils"; import React from "react"; export interface ScalesProps { orientation?: "horizontal" | "vertical" | "diagonal"; size?: number;…

source-aceternity prompt-public not-rerun license-review web-ui motion-3d
提示语
// components/ui/ascii-art.tsx "use client"; import React, { useEffect, useLayoutEffect, useRef, useState, useCallback, useId, } from "react"; import { motion, useInView } from…

source-aceternity prompt-public not-rerun license-review web-ui motion-3d
提示语
// components/ui/3d-globe.tsx "use client"; import React, { useRef, useMemo, useState, useCallback, Suspense } from "react"; import { Canvas, useFrame, useThree } from…

提示语
// components/ui/keyboard.tsx "use client"; import React, { createContext, useContext, useEffect, useRef, useState, useCallback, } from "react"; import { motion, AnimatePresence } from…

source-aceternity prompt-public not-rerun license-review web-ui motion-3d
提示语
// components/ui/dither-shader.tsx "use client"; import React, { useEffect, useRef, useCallback, useState } from "react"; import { cn } from "@/lib/utils"; type DitheringMode = "bayer" |…

source-aceternity prompt-public not-rerun license-review web-ui motion-3d
提示语
// components/ui/encrypted-text.tsx "use client"; import React, { useEffect, useRef, useState } from "react"; import { motion, useInView } from "motion/react"; import { cn } from…

source-aceternity prompt-public not-rerun license-review web-ui motion-3d
提示语
// components/ui/dotted-glow-background.tsx "use client"; import React, { useEffect, useRef, useState } from "react"; type DottedGlowBackgroundProps = { className?: string; /**…

source-aceternity prompt-public not-rerun license-review web-ui motion-3d
提示语
// components/ui/canvas-text.tsx "use client"; import { cn } from "@/lib/utils"; import React, { useEffect, useRef, useState, useCallback } from "react"; interface CanvasTextProps { text:…

source-aceternity prompt-public not-rerun license-review web-ui motion-3d
提示语
// components/ui/sticky-banner.tsx "use client"; import React, { SVGProps, useState } from "react"; import { motion, useMotionValueEvent, useScroll } from "motion/react"; import { cn }…

source-aceternity prompt-public not-rerun license-review web-ui motion-3d
提示语
// components/ui/draggable-card.tsx "use client"; import { cn } from "@/lib/utils"; import React, { useRef, useState, useEffect } from "react"; import { motion, useMotionValue, useSpring,…

source-aceternity prompt-public not-rerun license-review web-ui motion-3d
提示语
// components/ui/resizable-navbar.tsx "use client"; import { cn } from "@/lib/utils"; import { IconMenu2, IconX } from "@tabler/icons-react"; import { motion, AnimatePresence, useScroll,…

source-aceternity prompt-public not-rerun license-review web-ui motion-3d
提示语
// components/ui/container-text-flip.tsx "use client"; import React, { useState, useEffect, useId } from "react"; import { motion } from "motion/react"; import { cn } from "@/utils/cn";…

source-aceternity prompt-public not-rerun license-review web-ui motion-3d
提示语
// components/ui/glowing-effect.tsx "use client"; import { memo, useCallback, useEffect, useRef } from "react"; import { cn } from "@/lib/utils"; import { animate } from "motion/react";…
source-aceternity prompt-public not-rerun license-review web-ui motion-3d
提示语
// components/ui/spotlight-new.tsx "use client"; import React from "react"; import { motion } from "motion/react"; type SpotlightProps = { gradientFirst?: string; gradientSecond?: string;…

source-aceternity prompt-public not-rerun license-review web-ui motion-3d
提示语
// components/ui/magnetic-button.tsx "use client"; import React, { useRef, useState } from "react"; import { motion } from "motion/react"; export const MagneticButton = ({ children,…

source-aceternity prompt-public not-rerun license-review web-ui motion-3d
提示语
// components/ui/carousel.tsx "use client"; import { IconArrowNarrowRight } from "@tabler/icons-react"; import { useState, useRef, useId, useEffect } from "react"; interface SlideData {…

source-aceternity prompt-public not-rerun license-review web-ui motion-3d
提示语
// components/ui/code-block.tsx "use client"; import React from "react"; import { Prism as SyntaxHighlighter } from "react-syntax-highlighter"; import { atomDark } from…

source-aceternity prompt-public not-rerun license-review web-ui motion-3d
提示语
// components/ui/animated-testimonials.tsx "use client"; import { IconArrowLeft, IconArrowRight } from "@tabler/icons-react"; import { motion, AnimatePresence } from "motion/react"; import…

source-aceternity prompt-public not-rerun license-review web-ui motion-3d
提示语
// components/ui/lens.tsx "use client"; import React, { useRef, useState } from "react"; import { AnimatePresence, motion } from "motion/react"; interface LensProps { children:…

source-aceternity prompt-public not-rerun license-review web-ui motion-3d
提示语
// components/ui/timeline.tsx "use client"; import { useMotionValueEvent, useScroll, useTransform, motion, } from "motion/react"; import React, { useEffect, useRef, useState } from…

source-aceternity prompt-public not-rerun license-review web-ui motion-3d
提示语
// components/ui/background-beams-with-collision.tsx "use client"; import { cn } from "@/lib/utils"; import { motion, AnimatePresence } from "motion/react"; import React, { useRef,…

source-aceternity prompt-public not-rerun license-review web-ui motion-3d
提示语
// components/ui/floating-dock.tsx "use client"; /** * 注意:请根据你的需求使用固定定位 * 桌面端导航栏更适合放在底部 * 移动端导航栏更适合放在右下角。 **/ import { cn } from…