feat(content): organize platform media sections

This commit is contained in:
poyrazavsever
2026-08-31 10:13:35 +03:00
parent 79dd81240d
commit 5c48b029ca
41 changed files with 737 additions and 17354 deletions
+2
View File
@@ -1,5 +1,6 @@
import { ContentContent } from "@/components/content-content";
import { YOUTUBE_VIDEO_LINKS } from "@/data/youtube-videos";
import { X_JAVASCRIPT_ANATOMY_VIDEOS } from "@/data/x-videos";
import { getPdfNotes } from "@/lib/content-page";
export default async function ContentPage() {
@@ -9,6 +10,7 @@ export default async function ContentPage() {
<ContentContent
youtubeLinks={YOUTUBE_VIDEO_LINKS}
pdfFiles={pdfFiles}
xVideos={X_JAVASCRIPT_ANATOMY_VIDEOS}
/>
);
}