Merge branch 'origin/main' into feature/faculty-directory

This commit is contained in:
Buvan
2026-07-23 08:22:24 +05:30
58 changed files with 5310 additions and 395 deletions

View File

@@ -9,7 +9,7 @@ interface FeatureCardProps {
}
export default function FeatureCard({ feature }: FeatureCardProps) {
const IconComponent = (LucideIcons as Record<string, React.ComponentType<{ className?: string }>>)[feature.icon];
const IconComponent = (LucideIcons as unknown as Record<string, React.ComponentType<{ className?: string; style?: React.CSSProperties }>>)[feature.icon];
return (
<motion.div