import React from 'react' import Head from 'next/head' import {GetStaticProps} from 'next' import {SimpleLayout} from '@/components/SimpleLayout' import {Card} from '@/components/Card' import {numberFormat} from '@/lib/numberFormat' import {getDashboardData} from '@/lib/dashboard' import type {CardGroupProps} from '@/types' export default function Dashboard({cardGroups}: { cardGroups: CardGroupProps }) { return ( <>