import * as React from "react"; import { RefineReadyPageProps } from "@pankod/refine-ui-types"; import { Row, Col, Typography, Space, Button } from "antd"; import { ReadOutlined, FolderOutlined, TeamOutlined } from "@ant-design/icons"; const styles: { [key: string]: React.CSSProperties } = { root: { height: "100vh", backgroundImage: "url('https://refine.ams3.cdn.digitaloceanspaces.com/login-background/background.png')", backgroundSize: "cover", backgroundColor: "#331049", }, title: { color: "white", fontWeight: 800, fontSize: "64px", marginBottom: "8px", }, p1: { color: "white", marginBottom: 0, fontSize: "20px", fontWeight: "bold", }, p2: { color: "white", fontSize: "20px", }, code: { backgroundColor: "white", color: "#331049", }, }; const { Title } = Typography; /** * **refine** shows a default ready page on root route when no `resources` is passed to the `` component as a property. * * @see {@link https://refine.dev/docs/api-references/components/refine-config#readypage} for more details. */ export const ReadyPage: React.FC = () => { return ( Refine Logo Welcome on board

Your configuration is completed.

Now you can get started by adding your resources to the{" "} {`resources`} property of{" "} {``}

); };