import Head from 'next/head' import { Inter } from '@next/font/google' import { Card, Container } from 'react-bootstrap' import ComparativeBarChart from '../components/ComparativeBarChart' import { useState } from 'react' const inter = Inter({ subsets: ['latin'] }) export default function Home() { const [datasets, setDatasets] = useState([[1, 2, 3, 4, 5, 6, 7], [7, 6, 5, 4, 3, 2, 1]]); return ( <>