All checks were successful
Build & Deploy / 🔍 Prepare (push) Successful in 1m0s
Build & Deploy / 🧪 QA (push) Successful in 1m37s
Build & Deploy / 🏗️ Build (push) Successful in 3m19s
Build & Deploy / 🚀 Deploy (push) Successful in 40s
Build & Deploy / 🧪 Post-Deploy Verification (push) Has been skipped
Build & Deploy / 🔔 Notify (push) Successful in 2s
22 lines
429 B
TypeScript
22 lines
429 B
TypeScript
'use client';
|
|
|
|
import React from 'react';
|
|
import { cn } from '@/components/ui';
|
|
|
|
interface RevealProps {
|
|
children: React.ReactNode;
|
|
className?: string;
|
|
threshold?: number;
|
|
delay?: number;
|
|
}
|
|
|
|
export default function Reveal({ children, className }: RevealProps) {
|
|
// Reveal animation disabled due to flickering issues on mobile/hydration
|
|
return (
|
|
<div className={cn(className)}>
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|
|
|