import { Button } from './Button'; import { Container } from './Container'; export function Hero({ countriesCount, datasetsCount, filesCount }) { return (

It's our money!

By understanding how governments spend money in our name can we have a say in how that money will affect our own lives. The journey starts here.

OpenSpending is a free, open and global platform to search, visualise and analyse fiscal data in the public sphere.

{[ // Added the plus sign because some datasets do not // contain defined countries ['Countries', '+' + countriesCount], ['Datasets', datasetsCount], ['Files', filesCount], ].map(([name, value]) => (
{name}
{value}
))}
); }