Files
e-tib.com/components/Reveal.tsx
Marc Mintel 0191fdb770
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
fix: resolve reveal flickering, adjust grid header UI, update Guben image
2026-06-20 21:49:59 +02:00

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>
);
}