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">
|
2022-09-13 05:19:04 +00:00
|
|
|
<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">
|
2022-08-10 09:39:39 +00:00
|
|
|
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 />
|
2022-08-10 09:39:39 +00:00
|
|
|
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">
|
2022-08-03 07:25:08 +00:00
|
|
|
<HomeCard className="p-4 -m-4 hover:bg-gray-500/10 rounded" link="/collections/create" title="Create">
|
2022-08-10 09:39:39 +00:00
|
|
|
Upload your assets, enter collection metadata and deploy your collection.
|
2022-07-13 13:56:36 +00:00
|
|
|
</HomeCard>
|
2022-07-27 06:49:36 +00:00
|
|
|
<HomeCard className="p-4 -m-4 hover:bg-gray-500/10 rounded" link="/collections" title="My Collections">
|
2022-08-10 09:39:39 +00:00
|
|
|
Manage your collections with available actions and queries.
|
2022-07-13 13:56:36 +00:00
|
|
|
</HomeCard>
|
|
|
|
</div>
|
|
|
|
</section>
|
2022-07-27 06:49:36 +00:00
|
|
|
)
|
2022-07-13 13:56:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export default withMetadata(HomePage, { center: false })
|