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) {
))}
+