## Color Strategy: "Dark Elegance with Innovation Sparks"
Reduced teal usage from ~30% to ~5% as strategic AI/innovation accent.
Introduced amber for speed/performance metrics. Slate foundation for
professional, calm aesthetic suitable for healthcare EPD application.
### Login Page (app/login/page.tsx)
- Bento grid: Color variety (teal=AI, amber=speed, blue/indigo=general)
- Stats footer: Amber for time metrics (90%+, <5 sec), slate for build time
- Focus rings: teal-500 → slate-400 (subtle, professional)
- Clock icon for time savings feature
### Homepage (app/(marketing)/page.tsx)
- CTA background: teal-50 → slate-50 (calm, elegant)
- Teal CTA button remains (strategic conversion accent)
- NEW: Hero Section 2 implementation with:
- Split-screen layout (60% content, 40% background image)
- Framer Motion animations (staggered reveal + clip-path)
- Logo, slogan, title with teal accent, CTA, contact footer
- Tech-themed Unsplash background image
### EPD Sidebar (app/epd/components/epd-sidebar.tsx)
- Kept LIGHT theme (white/slate-50) - suitable for long EPD sessions
- Active states: teal-50 → slate-100 (professional, not distracting)
- Navigation: Subtle slate colors, not teal
- Teal AI logo only (innovation marker)
- Slate avatar (neutral, professional)
### New Files
- app/(marketing)/components/hero-section-client.tsx
Client wrapper for HeroSection (framer-motion compatibility)
## Result
- Teal is now meaningful AI/innovation signal (not decorative)
- Amber signals speed ("aispeedrun.nl" brand alignment)
- Slate provides professional foundation for EPD context
- Build succeeds ✅
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
377 lines
13 KiB
TypeScript
377 lines
13 KiB
TypeScript
'use client'
|
|
|
|
import { useState } from 'react'
|
|
import { useRouter } from 'next/navigation'
|
|
import { loginWithMagicLink, loginWithPassword } from '@/lib/auth/client'
|
|
import { Brain, Zap, Target, FileText, Clock, TrendingDown } from 'lucide-react'
|
|
import { BentoGrid, BentoCard } from '@/components/ui/bento-grid'
|
|
|
|
// Bento grid features with different sizes for visual interest
|
|
const bentoFeatures = [
|
|
{
|
|
name: 'AI Intake Samenvatting',
|
|
description: 'Van 30 minuten handmatig werk naar 5 seconden automatisch. AI leest, begrijpt en structureert intake gesprekken.',
|
|
icon: Brain,
|
|
className: 'col-span-3 lg:col-span-2',
|
|
background: (
|
|
<div className="absolute inset-0 bg-gradient-to-br from-teal-500/20 to-teal-600/20" />
|
|
),
|
|
href: '#',
|
|
cta: 'Meer info'
|
|
},
|
|
{
|
|
name: '90%+ Tijdsbesparing',
|
|
description: 'Gemiddeld bespaar je 2+ uur per dag op documentatie',
|
|
icon: Clock,
|
|
className: 'col-span-3 lg:col-span-1',
|
|
background: (
|
|
<div className="absolute inset-0 bg-gradient-to-br from-amber-500/20 to-amber-600/20" />
|
|
),
|
|
href: '#',
|
|
cta: 'Zie metrics'
|
|
},
|
|
{
|
|
name: 'DSM Classificatie',
|
|
description: 'Automatische categorisatie in 3 seconden vs 15 minuten handmatig',
|
|
icon: Zap,
|
|
className: 'col-span-3 lg:col-span-1',
|
|
background: (
|
|
<div className="absolute inset-0 bg-gradient-to-br from-amber-500/20 to-orange-500/20" />
|
|
),
|
|
href: '#',
|
|
cta: 'Ontdekken'
|
|
},
|
|
{
|
|
name: 'SMART Behandelplannen',
|
|
description: 'Gestructureerde doelen en interventies in 10 seconden. AI genereert evidence-based plannen.',
|
|
icon: Target,
|
|
className: 'col-span-3 lg:col-span-2',
|
|
background: (
|
|
<div className="absolute inset-0 bg-gradient-to-br from-blue-500/20 to-indigo-600/20" />
|
|
),
|
|
href: '#',
|
|
cta: 'Bekijk voorbeeld'
|
|
}
|
|
]
|
|
|
|
export default function LoginPage() {
|
|
const router = useRouter()
|
|
const [email, setEmail] = useState('')
|
|
const [password, setPassword] = useState('')
|
|
const [loading, setLoading] = useState(false)
|
|
const [message, setMessage] = useState<{
|
|
type: 'success' | 'error'
|
|
text: string
|
|
} | null>(null)
|
|
const [showDemoLogin, setShowDemoLogin] = useState(false)
|
|
|
|
// Magic link login
|
|
const handleMagicLinkLogin = async (e: React.FormEvent) => {
|
|
e.preventDefault()
|
|
setLoading(true)
|
|
setMessage(null)
|
|
|
|
try {
|
|
const result = await loginWithMagicLink(email)
|
|
setMessage({
|
|
type: 'success',
|
|
text: result.message
|
|
})
|
|
setEmail('')
|
|
} catch (error: any) {
|
|
setMessage({
|
|
type: 'error',
|
|
text: error.message || 'Er ging iets mis. Probeer opnieuw.'
|
|
})
|
|
} finally {
|
|
setLoading(false)
|
|
}
|
|
}
|
|
|
|
// Password login (demo accounts)
|
|
const handlePasswordLogin = async (e: React.FormEvent) => {
|
|
e.preventDefault()
|
|
setLoading(true)
|
|
setMessage(null)
|
|
|
|
try {
|
|
await loginWithPassword(email, password)
|
|
setMessage({
|
|
type: 'success',
|
|
text: 'Ingelogd! Redirect naar EPD...'
|
|
})
|
|
|
|
// Redirect to EPD
|
|
setTimeout(() => {
|
|
router.push('/epd/clients')
|
|
}, 1000)
|
|
} catch (error: any) {
|
|
setMessage({
|
|
type: 'error',
|
|
text: error.message || 'Ongeldige credentials.'
|
|
})
|
|
} finally {
|
|
setLoading(false)
|
|
}
|
|
}
|
|
|
|
// Quick demo login
|
|
const handleQuickDemoLogin = async () => {
|
|
setEmail('demo@mini-ecd.demo')
|
|
setPassword('Demo2024!')
|
|
setShowDemoLogin(true)
|
|
|
|
// Auto-submit
|
|
setLoading(true)
|
|
try {
|
|
await loginWithPassword('demo@mini-ecd.demo', 'Demo2024!')
|
|
router.push('/epd/clients')
|
|
} catch (error: any) {
|
|
setMessage({
|
|
type: 'error',
|
|
text: 'Demo login mislukt. Probeer handmatig in te loggen.'
|
|
})
|
|
setLoading(false)
|
|
}
|
|
}
|
|
|
|
return (
|
|
<div className="min-h-screen flex flex-col lg:flex-row">
|
|
{/* Left Side - Bento Grid Showcase (60%) */}
|
|
<div className="lg:w-3/5 bg-gradient-to-br from-slate-900 via-slate-800 to-slate-900 p-6 md:p-8 lg:p-12 flex flex-col justify-center">
|
|
<div className="max-w-5xl mx-auto w-full">
|
|
{/* Header */}
|
|
<div className="mb-8">
|
|
<a href="/" className="inline-block mb-6 text-slate-300 hover:text-white transition-colors">
|
|
← Terug naar home
|
|
</a>
|
|
<h1 className="text-3xl md:text-4xl lg:text-5xl font-bold text-white mb-4">
|
|
AI-Gestuurde EPD Workflows
|
|
</h1>
|
|
<p className="text-slate-300 text-lg md:text-xl max-w-2xl">
|
|
Van uren documentatie naar seconden. Ontdek hoe AI je dagelijkse workflow transformeert.
|
|
</p>
|
|
</div>
|
|
|
|
{/* Bento Grid */}
|
|
<BentoGrid className="mb-8">
|
|
{bentoFeatures.map((feature, index) => (
|
|
<BentoCard
|
|
key={index}
|
|
name={feature.name}
|
|
description={feature.description}
|
|
Icon={feature.icon}
|
|
className={feature.className}
|
|
background={feature.background}
|
|
href={feature.href}
|
|
cta={feature.cta}
|
|
/>
|
|
))}
|
|
</BentoGrid>
|
|
|
|
{/* Stats Footer */}
|
|
<div className="grid grid-cols-3 gap-4 mt-8">
|
|
<div className="text-center p-4 bg-white/5 rounded-lg border border-white/10">
|
|
<div className="text-2xl md:text-3xl font-bold text-amber-400">90%+</div>
|
|
<div className="text-xs md:text-sm text-slate-400 mt-1">Tijdsbesparing</div>
|
|
</div>
|
|
<div className="text-center p-4 bg-white/5 rounded-lg border border-white/10">
|
|
<div className="text-2xl md:text-3xl font-bold text-amber-400">< 5 sec</div>
|
|
<div className="text-xs md:text-sm text-slate-400 mt-1">Gemiddelde respons</div>
|
|
</div>
|
|
<div className="text-center p-4 bg-white/5 rounded-lg border border-white/10">
|
|
<div className="text-2xl md:text-3xl font-bold text-slate-300">4 weken</div>
|
|
<div className="text-xs md:text-sm text-slate-400 mt-1">Build tijd</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Right Side - Login Form (40%) */}
|
|
<div className="md:w-2/5 bg-white p-8 md:p-12 flex flex-col justify-center">
|
|
<div className="w-full max-w-md mx-auto">
|
|
{/* Header */}
|
|
<div className="text-center mb-8">
|
|
<h2 className="text-2xl md:text-3xl font-bold text-slate-900 mb-2">
|
|
Login
|
|
</h2>
|
|
<p className="text-slate-600">
|
|
Toegang tot EPD prototype
|
|
</p>
|
|
</div>
|
|
|
|
{/* Message Display */}
|
|
{message && (
|
|
<div
|
|
className={`mb-6 p-4 rounded-lg ${
|
|
message.type === 'success'
|
|
? 'bg-teal-50 text-teal-800 border border-teal-200'
|
|
: 'bg-red-50 text-red-800 border border-red-200'
|
|
}`}
|
|
>
|
|
<p className="text-sm font-medium">{message.text}</p>
|
|
</div>
|
|
)}
|
|
|
|
{/* Magic Link Login */}
|
|
{!showDemoLogin && (
|
|
<div>
|
|
<h3 className="text-lg font-semibold text-slate-900 mb-4">
|
|
📧 Login met Magic Link
|
|
</h3>
|
|
|
|
<form onSubmit={handleMagicLinkLogin} className="space-y-4">
|
|
<div>
|
|
<label
|
|
htmlFor="email"
|
|
className="block text-sm font-medium text-slate-700 mb-1"
|
|
>
|
|
Email
|
|
</label>
|
|
<input
|
|
id="email"
|
|
type="email"
|
|
value={email}
|
|
onChange={(e) => setEmail(e.target.value)}
|
|
placeholder="jouw@email.nl"
|
|
required
|
|
className="w-full px-4 py-2.5 border border-slate-300 rounded-lg focus:ring-2 focus:ring-slate-400 focus:border-slate-400"
|
|
/>
|
|
<p className="mt-1 text-xs text-slate-500">
|
|
Nieuw? Account wordt automatisch aangemaakt!
|
|
</p>
|
|
</div>
|
|
|
|
<button
|
|
type="submit"
|
|
disabled={loading}
|
|
className="w-full bg-teal-600 hover:bg-teal-700 text-white font-medium py-2.5 px-4 rounded-lg transition-colors disabled:opacity-50 disabled:cursor-not-allowed"
|
|
>
|
|
{loading ? 'Verzenden...' : 'Stuur Magic Link'}
|
|
</button>
|
|
</form>
|
|
|
|
{/* Divider */}
|
|
<div className="relative my-6">
|
|
<div className="absolute inset-0 flex items-center">
|
|
<div className="w-full border-t border-slate-300" />
|
|
</div>
|
|
<div className="relative flex justify-center text-sm">
|
|
<span className="px-2 bg-white text-slate-500">of</span>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Demo Account Toggle */}
|
|
<button
|
|
onClick={() => setShowDemoLogin(true)}
|
|
className="w-full bg-slate-100 hover:bg-slate-200 text-slate-700 font-medium py-2.5 px-4 rounded-lg transition-colors"
|
|
>
|
|
🎯 Login met Demo Account
|
|
</button>
|
|
|
|
{/* Quick Demo Button */}
|
|
<button
|
|
onClick={handleQuickDemoLogin}
|
|
disabled={loading}
|
|
className="mt-3 w-full bg-amber-50 hover:bg-amber-100 text-amber-800 text-sm font-medium py-2 px-4 rounded-lg border border-amber-200 transition-colors disabled:opacity-50"
|
|
>
|
|
⚡ Snelle Demo Login
|
|
</button>
|
|
</div>
|
|
)}
|
|
|
|
{/* Demo Password Login */}
|
|
{showDemoLogin && (
|
|
<div>
|
|
<div className="flex items-center justify-between mb-4">
|
|
<h3 className="text-lg font-semibold text-slate-900">
|
|
🎯 Demo Account Login
|
|
</h3>
|
|
<button
|
|
onClick={() => {
|
|
setShowDemoLogin(false)
|
|
setPassword('')
|
|
}}
|
|
className="text-sm text-slate-600 hover:text-slate-900"
|
|
>
|
|
← Terug
|
|
</button>
|
|
</div>
|
|
|
|
{/* Demo Credentials Info */}
|
|
<div className="bg-amber-50 border border-amber-200 rounded-lg p-4 mb-4">
|
|
<p className="text-sm font-medium text-amber-800 mb-2">
|
|
📋 Demo Credentials:
|
|
</p>
|
|
<div className="text-xs text-amber-700 font-mono space-y-1">
|
|
<p>Email: demo@mini-ecd.demo</p>
|
|
<p>Password: Demo2024!</p>
|
|
</div>
|
|
</div>
|
|
|
|
<form onSubmit={handlePasswordLogin} className="space-y-4">
|
|
<div>
|
|
<label
|
|
htmlFor="demo-email"
|
|
className="block text-sm font-medium text-slate-700 mb-1"
|
|
>
|
|
Email
|
|
</label>
|
|
<input
|
|
id="demo-email"
|
|
type="email"
|
|
value={email}
|
|
onChange={(e) => setEmail(e.target.value)}
|
|
placeholder="demo@mini-ecd.demo"
|
|
required
|
|
className="w-full px-4 py-2.5 border border-slate-300 rounded-lg focus:ring-2 focus:ring-slate-400 focus:border-slate-400"
|
|
/>
|
|
</div>
|
|
|
|
<div>
|
|
<label
|
|
htmlFor="password"
|
|
className="block text-sm font-medium text-slate-700 mb-1"
|
|
>
|
|
Password
|
|
</label>
|
|
<input
|
|
id="password"
|
|
type="password"
|
|
value={password}
|
|
onChange={(e) => setPassword(e.target.value)}
|
|
placeholder="••••••••"
|
|
required
|
|
className="w-full px-4 py-2.5 border border-slate-300 rounded-lg focus:ring-2 focus:ring-slate-400 focus:border-slate-400"
|
|
/>
|
|
</div>
|
|
|
|
<button
|
|
type="submit"
|
|
disabled={loading}
|
|
className="w-full bg-teal-600 hover:bg-teal-700 text-white font-medium py-2.5 px-4 rounded-lg transition-colors disabled:opacity-50 disabled:cursor-not-allowed"
|
|
>
|
|
{loading ? 'Inloggen...' : 'Login'}
|
|
</button>
|
|
</form>
|
|
</div>
|
|
)}
|
|
|
|
{/* Footer */}
|
|
<p className="text-center text-xs text-slate-500 mt-8">
|
|
Build in Public door{' '}
|
|
<a
|
|
href="https://ikbenlit.nl"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="text-teal-600 hover:text-teal-700 font-medium"
|
|
>
|
|
AI Speedrun
|
|
</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|