From 898d2f59594977249521d1604fc9f7cf58084c29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=B6rdle=20Bot?= Date: Tue, 25 Nov 2025 14:22:07 +0100 Subject: [PATCH] Add NewsSection to genre and special pages --- app/[genre]/page.tsx | 2 ++ app/special/[name]/page.tsx | 2 ++ 2 files changed, 4 insertions(+) diff --git a/app/[genre]/page.tsx b/app/[genre]/page.tsx index 04c8865..e5dc87e 100644 --- a/app/[genre]/page.tsx +++ b/app/[genre]/page.tsx @@ -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'; @@ -102,6 +103,7 @@ export default async function GenrePage({ params }: PageProps) { )} + ); diff --git a/app/special/[name]/page.tsx b/app/special/[name]/page.tsx index c256c5f..9fa1b2c 100644 --- a/app/special/[name]/page.tsx +++ b/app/special/[name]/page.tsx @@ -1,4 +1,5 @@ import Game from '@/components/Game'; +import NewsSection from '@/components/NewsSection'; import { getOrCreateSpecialPuzzle } from '@/lib/dailyPuzzle'; import Link from 'next/link'; import { PrismaClient } from '@prisma/client'; @@ -94,6 +95,7 @@ export default async function SpecialPage({ params }: PageProps) { ))} +