import { IVod } from "@futureporn/types"; import Link from "next/link"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { faChevronLeft, faChevronRight } from "@fortawesome/free-solid-svg-icons"; import { getNextVod, getPreviousVod, getUrl } from "../lib/vods"; import { getLocalizedDate } from "../lib/vods"; import Footer from "./footer"; export default async function VodPage2 ({ vod }: { vod: IVod }) { // use vod 337 for prototyping, because 337 has both timestamps and tags. const nextVod = await getNextVod(vod) const previousVod = await getPreviousVod(vod) const slug = vod.vtuber.slug return ( <>

VodPage2

@todo insert video player here

@todo insert title here

@todo insert notes

@todo insert tags here

@todo insert timestamps here

) }