feat: integrate all frontend modules and premium UI

This commit is contained in:
Amudieshwar A G
2026-07-23 14:22:47 +05:30
parent 27999a5bea
commit 5a10192ef0
34 changed files with 2731 additions and 889 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