import { getSentinelValue } from './sentinel' export async function LastModified({ params }) { const { slug } = await params return (

Page /{slug} last modified: {new Date().toISOString()} ( {getSentinelValue()})

) } export async function CachedLastModified({ params }) { 'use cache' return }