diff --git a/src/pages/login.tsx b/src/pages/login.tsx index 1222273..a95ba0b 100644 --- a/src/pages/login.tsx +++ b/src/pages/login.tsx @@ -1,3 +1,213 @@ +import { useState } from 'react'; +import { useNavigate } from 'react-router'; +import { useAuth } from '@/providers/auth-provider'; +import { Button } from '@/components/base/buttons/button'; +import { SocialButton } from '@/components/base/buttons/social-button'; +import { Input } from '@/components/base/input/input'; + +const features = [ + { + title: 'Unified Lead Inbox', + description: 'All channels in one workspace', + }, + { + title: 'Campaign Intelligence', + description: 'Real-time performance tracking', + }, + { + title: 'Speed to Contact', + description: 'Automated assignment and outreach', + }, +]; + +type RoleTab = 'executive' | 'admin'; + export const LoginPage = () => { - return
+ Unified visibility into leads, campaigns, and team performance. Built for Ramaiah Memorial Hospital. +
+