import { promises as fs } from 'fs'; import path from 'path'; export const dynamic = 'force-static'; export default async function ReadmePage() { const filePath = path.join(process.cwd(), 'README.md'); let content = 'README not found.'; try { content = await fs.readFile(filePath, 'utf-8'); } catch (e) { content = 'README not found.'; } return (

README

        {content}
      
); }