'use client'; import * as React from 'react'; import { ArrowDown } from 'lucide-react'; import { motion } from 'motion/react'; import { ScrollProgress } from '@/registry/components/scroll-progress'; export const ScrollProgressDemo = () => { return (

Scroll down to see the progress bar{' '}

); };