diff --git a/app/cfp/(submit)/normal/page.tsx b/app/cfp/(submit)/normal/page.tsx index 629d3a45..41d38cdf 100644 --- a/app/cfp/(submit)/normal/page.tsx +++ b/app/cfp/(submit)/normal/page.tsx @@ -6,6 +6,7 @@ import SubmissionBtn from "@/components/cfp/SubmissionBtn"; import CardForNormal from "@/components/cfp/CardForNormal"; import Subtitle from "@/components/cfp/Subtitle"; import Toc from "@/components/cfp/Toc"; +import VideoCard from "@/components/cfp/VideoCard"; export default function Page() { const tocs = [ @@ -194,6 +195,12 @@ export default function Page() {

讓您有充分的時間展示想法、描述經歷、和與會者交流

+ {/*
+ + + + +
*/}

ESPRESSO

diff --git a/components/cfp/VideoCard.tsx b/components/cfp/VideoCard.tsx new file mode 100644 index 00000000..8f497bb6 --- /dev/null +++ b/components/cfp/VideoCard.tsx @@ -0,0 +1,25 @@ +export default function VideoCard({ + image, + title, + href, +}: { + image: string; + title: string; + href: string; +}) { + return ( + +
+
{title}
+
+ ); +} diff --git a/public/cfp/video-image/test.jpg b/public/cfp/video-image/test.jpg new file mode 100644 index 00000000..7db0d80c Binary files /dev/null and b/public/cfp/video-image/test.jpg differ