import { FeedContent } from "@/components/feed/feed-content";
import { news } from '@/lib/news';

export const dynamic = 'force-dynamic';

const newsFeed = await news({});

export default function FeedPage() {
  return <FeedContent newsItems={newsFeed} />
}
