'use client'; import { Suspense } from 'react'; import { LoginForm } from '@/components/auth/login-form'; function LoginContent() { return (
{/* Left side - Branding (hidden on mobile) */}
{/* Logo */}
{/* Lightning bolt / smash icon */} {/* Impact sparks */}
{/* Title */}

Cabo Pickleball Club

Powered by SmashPoint

{/* Tagline */}

Court Management System

{/* Features */}

Court Bookings

Manage your courts and schedules

Player Management

Memberships and player profiles

Reports & Analytics

Analyze your club's performance

{/* Right side - Login Form */}
{/* Mobile Logo */}

Cabo Pickleball Club

Court Management System

{/* Footer */}

© {new Date().getFullYear()} SmashPoint. All rights reserved.

); } export default function LoginPage() { return (
} >
); }