2023-07-31 20:54:52 +02:00
|
|
|
import {
|
|
|
|
Container,
|
|
|
|
ContentJustify,
|
|
|
|
PageHeader,
|
|
|
|
Section,
|
|
|
|
} from "./components/index.js";
|
2023-04-19 22:44:06 +02:00
|
|
|
|
|
|
|
const PagePreview = ({ widgetFor, entry }) => {
|
2023-05-29 16:22:34 +02:00
|
|
|
return [
|
|
|
|
PageHeader(entry),
|
2023-07-31 20:54:52 +02:00
|
|
|
Section(Container(ContentJustify(widgetFor("body")))),
|
2023-05-29 16:22:34 +02:00
|
|
|
];
|
2023-04-19 22:44:06 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
export default PagePreview;
|