import { headers as getHeaders } from 'next/headers.js' import Image from 'next/image' import { getPayload } from 'payload' import type { Payload } from 'payload' import React from 'react' import { fileURLToPath } from 'url' import config from '@/payload.config' import './styles.css' import { RichText } from '@payloadcms/richtext-lexical/react' export default async function HomePage() { const headers = await getHeaders() const payloadConfig = await config const payload = await getPayload({ config: payloadConfig }) const { user } = await payload.auth({ headers }) const fileURL = `vscode://file/${fileURLToPath(import.meta.url)}` const homePage = await payload.find({ collection: 'pages', where: { title: { equals: 'Home', }, }, }) const page = homePage.docs?.[0] console.log(page) return (
Update this page by editing
app/(frontend)/page.tsx