You are given a task to integrate an existing React component in the codebase The codebase should support: - shadcn project structure - Tailwind CSS - Typescript If it doesn't, provide instructions on how to setup project via shadcn CLI, install Tailwind or Typescript. Determine the default path for components and styles. If default path for components is not /components/ui, provide instructions on why it's important to create this folder Copy-paste this component to /components/ui folder: ```tsx text-roll.tsx "use client" import React from "react" import { motion } from "motion/react" import { cn } from "@/lib/utils" const STAGGER = 0.035 export default function TextRoll({ children, className, center = false, }: { children: string className?: string center?: boolean }) { return ( {/* Top Text (Slides up) */}
{children.split("").map((l, i) => { const delay = center ? STAGGER * Math.abs(i - (children.length - 1) / 2) : STAGGER * i return ( {l} ) })}
{/* Bottom Text (Slides in from bottom) */}
{children.split("").map((l, i) => { const delay = center ? STAGGER * Math.abs(i - (children.length - 1) / 2) : STAGGER * i return ( {l} ) })}
) } demo.tsx import TextRoll from "@/components/ui/text-roll" const navigationItems = [ { name: "Home" }, { name: "Components" }, { name: "Pricing" }, { name: "How to use" }, { name: "Account" }, { name: "Login" }, ] export default function TextRollDemo() { return (
    {navigationItems.map((item, index) => (
  • {item.name}
  • ))}
) } ``` Install NPM dependencies: ```bash clsx, motion, tailwind-merge ``` Implementation Guidelines 1. Analyze the component structure and identify all required dependencies 2. Review the component's argumens and state 3. Identify any required context providers or hooks and install them 4. Questions to Ask - What data/props will be passed to this component? - Are there any specific state management requirements? - Are there any required assets (images, icons, etc.)? - What is the expected responsive behavior? - What is the best place to use this component in the app? Steps to integrate 0. Copy paste all the code above in the correct directories 1. Install external dependencies 2. Fill image assets with Unsplash stock images you know exist 3. Use lucide-react icons for svgs or logos if component requires them
Made on
Tilda