/**
* Dashboard Page - Placeholder for Phase 4
*/
import React from 'react';
import {
Box,
Heading,
Text,
Container,
VStack,
Badge,
Card,
CardBody,
SimpleGrid,
Button,
Alert,
AlertIcon,
} from '@chakra-ui/react';
import { Link as RouterLink } from 'react-router-dom';
import { useAuth } from '../contexts/AuthContext';
export function DashboardPage() {
const { isAuthenticated } = useAuth();
if (!isAuthenticated) {
return (
Please sign in to access your dashboard
);
}
return (
Dashboard
Your redirect tracking and analysis overview
Dashboard UI coming in Phase 4 Complete
📊 Recent Checks
View your latest redirect tracking results
📈 Analytics
Charts and insights from your tracking data
🏢 Organizations
Manage your teams and projects
⚙️ Settings
Configure your account and preferences
🔑 API Keys
Manage programmatic access tokens
📋 Projects
Organize your tracking checks
All dashboard features are being built and will be available soon:
);
}