import { Banner } from '@payloadcms/ui/elements/Banner'
import React from 'react'
import { SeedButton } from './SeedButton'
import './index.scss'
const baseClass = 'before-dashboard'
const BeforeDashboard: React.FC = () => {
return (
Welcome to your dashboard!
Here's what to do next:
-
{' with a few pages, posts, and projects to jump-start your new site, then '}
visit your website
{' to see the results.'}
-
If you created this repo using Payload Cloud, head over to GitHub and clone it to your
local machine. It will be under the GitHub Scope that you selected when creating
this project.
-
{'Modify your '}
collections
{' and add more '}
fields
{' as needed. If you are new to Payload, we also recommend you check out the '}
Getting Started
{' docs.'}
-
Commit and push your changes to the repository to trigger a redeployment of your project.
{'Pro Tip: This block is a '}
custom component
, you can remove it at any time by updating your
payload.config.
)
}
export default BeforeDashboard