highlight video feature

This commit is contained in:
Abi Raja 2024-03-08 04:49:47 -05:00
parent 28d33a4d7e
commit 3c97a401f8
2 changed files with 13 additions and 1 deletions

View File

@ -3,6 +3,8 @@ import { useState, useEffect, useMemo } from "react";
import { useDropzone } from "react-dropzone";
// import { PromptImage } from "../../../types";
import { toast } from "react-hot-toast";
import { URLS } from "../urls";
import { Badge } from "./ui/badge";
const baseStyle = {
flex: 1,
@ -157,10 +159,16 @@ function ImageUpload({ setReferenceImages }: Props) {
<input {...getInputProps()} />
<p className="text-slate-700 text-lg">
Drag & drop a screenshot here, <br />
or paste from clipboard, <br />
or click to upload
</p>
</div>
<div className="text-center text-sm text-slate-800 mt-4">
<Badge>New!</Badge> Upload a screen recording in .mp4 or .mov format to
clone a whole app (experimental).{" "}
<a className="underline" href={URLS["intro-to-video"]} target="_blank">
Learn more.
</a>
</div>
</section>
);
}

4
frontend/src/urls.ts Normal file
View File

@ -0,0 +1,4 @@
export const URLS = {
"intro-to-video":
"https://github.com/abi/screenshot-to-code/blob/main/blog/video-to-app.md",
};