import { getCards, getPortals } from '@/lib/db'; import PublicGrid from '@/components/PublicGrid'; import HeroBanner from '@/components/HeroBanner'; export const dynamic = 'force-dynamic'; export default async function PublicHomePage() { const portals = await getPortals(); const cards = await getCards(); const portal = portals[0] || {}; return (
{cards.length > 0 ? ( ) : (

No cards have been added yet.

)}
); }