import { Conditional } from 'components/Conditional' import { HomeCard } from 'components/HomeCard' import type { NextPage } from 'next' import { BADGE_HUB_ADDRESS } from 'utils/constants' import { withMetadata } from 'utils/layout' const HomePage: NextPage = () => { return (
Create a collection, view a list of your collections or execute collection actions and queries. Create badges, view a list of them or execute badge related actions and queries. Execute actions and queries for a variety of contracts.
) } export default withMetadata(HomePage, { center: false })