import Link from 'next/link' import supabase from '../../utils/supabase' // cache this page for 1 minute export const revalidate = 60 export default async function Posts() { const { data: posts } = await supabase.from('posts').select('id, title') if (!posts) { return
No posts found.
} return posts.map((post) => ({post.title}
)) }