@@ -9,7 +9,8 @@ import { FolderArchive, Link, NotebookPen } from "lucide-react";
99
1010const extensionVideo = "/example/extension.mp4" ;
1111const dashboardVideo = "/example/dashboard.mp4" ;
12- const topicVideo = "/example/topic.mp4" ;
12+ const connectionVideo = "/example/connection.mp4" ;
13+ const summaryTopicVideo = "/example/summary-topic.mp4" ;
1314
1415const DEMO_VIDEOS = [
1516 {
@@ -33,18 +34,17 @@ const DEMO_VIDEOS = [
3334 icon : < Link size = { 12 } /> ,
3435 title : "연결" ,
3536 description : "한 곳에 모은 지식들을 자유롭게 연결하세요." ,
36- video : topicVideo ,
37+ video : connectionVideo ,
3738 button : "연결하러 가기" ,
3839 } ,
39- // TODO: 서버 복구되면 영상 찍기
40- // {
41- // type: "dashboard",
42- // icon: <FolderArchive size={12} />,
43- // title: "정리",
44- // description: "연결된 지식들을 하나로 요약하세요.",
45- // video: topicVideo,
46- // button: "요약하러 가기",
47- // },
40+ {
41+ type : "topic" ,
42+ icon : < FolderArchive size = { 12 } /> ,
43+ title : "정리" ,
44+ description : "연결된 지식들을 하나로 요약하세요." ,
45+ video : summaryTopicVideo ,
46+ button : "요약하러 가기" ,
47+ } ,
4848] ;
4949
5050export default function DemoSection ( ) {
@@ -64,7 +64,7 @@ export default function DemoSection() {
6464 } ;
6565
6666 return (
67- < section className = "bg-card relative px-4 py-20" >
67+ < section id = "demo" className = "bg-card relative px-4 py-20" >
6868 < div className = "relative z-10 mx-auto max-w-6xl space-y-8 sm:space-y-12 lg:space-y-24" >
6969 { DEMO_VIDEOS . map ( ( demo , idx ) => (
7070 < div
0 commit comments