diff --git a/app/_components/home/Welcome.tsx b/app/_components/home/Welcome.tsx index 773123d..e2d677a 100644 --- a/app/_components/home/Welcome.tsx +++ b/app/_components/home/Welcome.tsx @@ -1,6 +1,10 @@ +import { useState } from "react"; import Player from "../common/Player"; +import { PlayCircle } from "lucide-react"; export default function Welcome() { + const [viewPromotion, setViewPromotion] = useState(false); + return (
@@ -15,11 +19,31 @@ export default function Welcome() {
- + {viewPromotion ? ( + + ) : ( +
+ + +
+ ) + }
); diff --git a/public/videos/shortcut.mp4 b/public/videos/shortcut.mp4 new file mode 100644 index 0000000..ad252e5 Binary files /dev/null and b/public/videos/shortcut.mp4 differ