import React from 'react'; import LineChart from '../../charts/LineChart04'; import { Link } from 'react-router-dom'; // Import utilities import { tailwindConfig, hexToRGB } from '../../utils/Utils'; function AnalyticsCard02() { const chartData = { labels: [ '12-01-2020', '01-01-2021', '02-01-2021', '03-01-2021', '04-01-2021', '05-01-2021', '06-01-2021', '07-01-2021', '08-01-2021', '09-01-2021', '10-01-2021', '11-01-2021', '12-01-2021', '01-01-2022', '02-01-2022', '03-01-2022', '04-01-2022', '05-01-2022', '06-01-2022', '07-01-2022', '08-01-2022', '09-01-2022', '10-01-2022', '11-01-2022', '12-01-2022', '01-01-2023', ], datasets: [ // Indigo line { data: [ 732, 610, 610, 504, 504, 504, 349, 349, 504, 342, 504, 610, 391, 192, 154, 273, 191, 191, 126, 263, 349, 252, 423, 622, 470, 532, ], fill: true, backgroundColor: `rgba(${hexToRGB(tailwindConfig().theme.colors.blue[500])}, 0.08)`, borderColor: tailwindConfig().theme.colors.indigo[500], borderWidth: 2, tension: 0, pointRadius: 0, pointHoverRadius: 3, pointBackgroundColor: tailwindConfig().theme.colors.indigo[500], clip: 20, }, ], }; return (

Active Users Right Now

{/* Card content */}
{/* Live visitors number */}
{/* Red dot */} {/* Vistors number */}
347
Live visitors
{/* Chart built with Chart.js 3 */}
{/* Change the height attribute to adjust the chart height */}
{/* Table */}
{/* Table header */} {/* Table body */} {/* Row */} {/* Row */} {/* Row */} {/* Row */}
Top pages
Active users
preview.cruip.com/open-pro/
94
preview.cruip.com/simple/
42
cruip.com/unlimited/
12
preview.cruip.com/twist/
4
{/* Card footer */}
Real-Time Report ->
); } export default AnalyticsCard02;