4582f961ba
* Initial preview & upload logic * Refactor image & metadata selection & preview logic * Refactor image & metadata selection & preview logic - 2 * Basic collection and minting info * Minor fix * gec * gec * gec * Collection info entries * Small refactor * Add stargaze text image and change website color Co-authored-by: Serkan Reis <serkanreis@gmail.com> Co-authored-by: findolor <anakisci@gmail.com>
33 lines
892 B
TypeScript
33 lines
892 B
TypeScript
import Anchor from 'components/Anchor'
|
|
import { CollectionInfo } from 'components/CollectionInfo'
|
|
import type { NextPage } from 'next'
|
|
import { NextSeo } from 'next-seo'
|
|
import { withMetadata } from 'utils/layout'
|
|
import { links } from 'utils/links'
|
|
|
|
const UploadPage: NextPage = () => {
|
|
return (
|
|
<div>
|
|
<NextSeo title="Create Collection" />
|
|
|
|
<div className="mt-5 space-y-8 text-center">
|
|
<h1 className="font-heading text-4xl font-bold">Create Collection</h1>
|
|
|
|
<p>
|
|
Make sure you check our{' '}
|
|
<Anchor className="font-bold text-plumbus hover:underline" href={links['Docs']}>
|
|
documentation
|
|
</Anchor>{' '}
|
|
on how to create your collection
|
|
</p>
|
|
</div>
|
|
|
|
<hr className="border-white/20" />
|
|
|
|
<CollectionInfo />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default withMetadata(UploadPage, { center: false })
|