diff --git a/txclient/src/app/landing/help/HelpContent.tsx b/txclient/src/app/landing/help/HelpContent.tsx new file mode 100644 index 0000000..bc9bc42 --- /dev/null +++ b/txclient/src/app/landing/help/HelpContent.tsx @@ -0,0 +1,335 @@ +"use client"; + +import { useState, useEffect } from "react"; +import style from "./help.module.css"; +import { videoCategories, Video, getTotalVideoCount } from "./videoData"; +import VideoModal from "./components/VideoModal"; +import AnimatedContainer from "@core/app/components/AnimatedConainer/AnimatedContainer"; +import HeaderConfProvider from "@core/app/components/HeaderConfProvider/HeaderConfProvider"; +import DefaultLoginAction from "@core/app/components/LoginAction/DefaultLoginAction"; +import { ScrollToTop } from "@core/app/components/ScrollTop"; +import Link from "next/link"; + +export default function HelpContent() { + const [selectedVideo, setSelectedVideo] = useState