UNPKG

@tohuhono/puck-blocks

Version:

A collection of puck components for building pages in OberonCMS

20 lines (19 loc) 674 B
import { jsx, jsxs } from "react/jsx-runtime"; import Link from "next/link"; const Welcome = { render: () => { return /* @__PURE__ */ jsx("div", { className: "flex w-full items-center justify-center", children: /* @__PURE__ */ jsxs( "div", { className: "\n prose pt-10\n dark:prose-invert\n ", children: [ /* @__PURE__ */ jsx("h1", { children: "Welcome to OberonCMS" }), /* @__PURE__ */ jsx("p", { children: /* @__PURE__ */ jsx(Link, { href: "/cms/edit", children: "Click here to login with your admin email to start editing" }) }) ] } ) }); } }; export { Welcome };