Implement News System with Admin UI and Homepage Integration

This commit is contained in:
Hördle Bot
2025-11-25 11:52:52 +01:00
parent 3e647cd44b
commit 0e313db2e3
9 changed files with 1834 additions and 5 deletions

View File

@@ -1,4 +1,5 @@
import Game from '@/components/Game';
import NewsSection from '@/components/NewsSection';
import { getOrCreateDailyPuzzle } from '@/lib/dailyPuzzle';
import Link from 'next/link';
import { PrismaClient } from '@prisma/client';
@@ -93,6 +94,9 @@ export default async function Home() {
</div>
)}
</div>
<NewsSection />
<Game dailyPuzzle={dailyPuzzle} genre={null} />
</>
);