--- import prismaClient from 'utils/prisma-client' import { Icon } from 'astro-icon/components' import SidebarSection from './SidebarSection.astro' import Looper from './CommentCarousel/Looper' const comments = await prismaClient.comments.findMany({ select: { text: true, album: { select: { id: true, title: true } } }, orderBy: { createdAt: 'desc' }, take: 5 }) ---