"use client" import { useRef } from "react" import { MoveLeft, MoveRight } from "lucide-react" import { LayoutGroup, motion } from "motion/react" import TextRotate, { TextRotateRef } from "@/fancy/components/text/text-rotate" export default function Preview() { const textRotateRef = useRef(null) return (
) }