diff --git a/src/app/page.tsx b/src/app/page.tsx index a6c3278..1f8e416 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -14,6 +14,10 @@ import FooterSimple from '@/components/sections/footer/FooterSimple'; import { Crown, Shield, Sparkles, Star, Zap } from 'lucide-react'; export default function LandingPage() { + const handleLoginClick = () => { + window.location.href = '#'; + }; + return ( @@ -268,4 +272,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +}