import { ThemeProvider } from "components/ThemeManager/ThemeProvider"; import { CreatePubForm } from "./CreatePubForm"; import { getIdentityData } from "actions/getIdentityData"; import LoginForm from "app/login/LoginForm"; export default async function CreatePub() { let identity = await getIdentityData(); if (!identity) return (
); return ( // Eventually this can pull from home theme?

Create Your Publication!

); }