diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx new file mode 100644 index 0000000..9de759a --- /dev/null +++ b/src/app/gallery/page.tsx @@ -0,0 +1,82 @@ + +import type { Metadata } from 'next'; +import { Button } from '@/components/ui/button'; +import Link from 'next/link'; + +export const metadata: Metadata = { + title: "Video Gallery - Community Coverage of Chelsea Smallwood", + description: "Watch YouTube commentary and analysis on Chelsea Smallwood, The Other Woman and the Wife, and the ongoing controversy.", +}; + +const videos = [ + { id: 'R35g0-dG6Xw', title: 'Life Coach CHELSEA SMALLWOOD Is SUING Her HUSBANDS Ex Wife... It Gets WORSE' }, + { id: 'vV_uImy858s', title: 'The Infidelity "Coach" Who Monetizes Affairs Is Now Suing The Betrayed Wife' }, + { id: 'JmUaAAbA9wU', title: 'Affair Coach Chelsea Smallwood Is SUING The Ex-Wife... Allegedly' }, +]; + +export default function GalleryPage() { + return ( +
+
+
+
+

+ YouTube Community Coverage +

+

+ Commentary and analysis from creators across the platform. +

+
+ +
+ {videos.map((video) => ( +
+
+ +
+

{video.title}

+
+ ))} +
+ +
+ +
+
+
+ + +
+ ); +} diff --git a/src/app/long-story/page.tsx b/src/app/long-story/page.tsx index b4e9f39..4ddc904 100644 --- a/src/app/long-story/page.tsx +++ b/src/app/long-story/page.tsx @@ -190,10 +190,13 @@ export default function LongStoryPage() { -
+
+
diff --git a/src/app/page.tsx b/src/app/page.tsx index de6c144..76680f0 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -76,10 +76,13 @@ export default function Home() { -
+
+