stargaze-studio/pages/index.tsx

40 lines
1.6 KiB
TypeScript
Raw Normal View History

2022-07-13 13:56:36 +00:00
import { HomeCard } from 'components/HomeCard'
import type { NextPage } from 'next'
import { withMetadata } from 'utils/layout'
const HomePage: NextPage = () => {
return (
<section className="px-8 pt-4 pb-16 mx-auto space-y-8 max-w-4xl">
<div className="flex justify-center items-center py-8 max-w-xl">
<img alt="Brand Text" className="ml-[50%] w-full" src="/stargaze_logo_800.svg" />
2022-07-13 13:56:36 +00:00
</div>
<h1 className="font-heading text-4xl font-bold">Welcome!</h1>
<p className="text-xl">
Looking for a fast and efficient way to build an NFT collection? Stargaze Studio is the solution.
2022-07-13 13:56:36 +00:00
<br />
<br />
Stargaze Studio is built to provide useful smart contract interfaces that helps you build and deploy your own
NFT collections in no time.
2022-07-13 13:56:36 +00:00
</p>
<br />
<br />
<div className="grid gap-8 md:grid-cols-2">
2023-02-16 07:51:30 +00:00
<HomeCard className="p-4 -m-4 hover:bg-gray-500/10 rounded" link="/collections/" title="Collections">
Create a collection, view a list of your collections or execute collection actions and queries.
2022-07-13 13:56:36 +00:00
</HomeCard>
2023-02-16 07:51:30 +00:00
<HomeCard className="p-4 -m-4 hover:bg-gray-500/10 rounded" link="/badges" title="Badges">
Create badges, view a list of them or execute badge related actions and queries.
</HomeCard>
<HomeCard className="p-4 -m-4 hover:bg-gray-500/10 rounded" link="/contracts" title="Contract Dashboards">
Execute actions and queries for a variety of contracts.
2022-07-13 13:56:36 +00:00
</HomeCard>
</div>
</section>
)
2022-07-13 13:56:36 +00:00
}
export default withMetadata(HomePage, { center: false })