"use client" import { useRef } from "react" import { useMousePosition } from "@/hooks/use-mouse-position" import VariableFontAndCursor from "@/fancy/components/text/variable-font-and-cursor" export default function Preview() { const containerRef = useRef(null) const { x, y } = useMousePosition(containerRef) return (
{/* this is the important stuff */}
fancy!
{/* this is just fluff for the demo */}
x: {Math.round(x)} y: {Math.round(y)}
) }