From 4e113093601d6f4465650fb6649514612f8c756c Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 1 May 2026 03:07:04 +0000 Subject: [PATCH] Add src/app/preview/page.tsx --- src/app/preview/page.tsx | 90 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 src/app/preview/page.tsx diff --git a/src/app/preview/page.tsx b/src/app/preview/page.tsx new file mode 100644 index 0000000..9d8f816 --- /dev/null +++ b/src/app/preview/page.tsx @@ -0,0 +1,90 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; +import { PlayCircle, ChevronLeft, BookOpen, Clock, ChevronRight } from "lucide-react"; + +export default function CoursePreviewPage() { + return ( + + + + +
+
+ {/* Video Player Section */} +
+
+ +
+
+

Veil I: The Nature of Cosmology

+

Part 1 of 4: Uncovering the foundational truth behind our shared reality.

+
+
+ + +
+
+ + {/* Sidebar Syllabus */} +
+

+ Course Curriculum +

+
+ {[1, 2, 3, 4, 5].map((item) => ( +
+
+
{item}
+ Lesson Segment {item} +
+
+ 12:00 +
+
+ ))} +
+
+
+
+ + +
+
+ ); +} \ No newline at end of file -- 2.49.1