import { Box, makeStyles, Theme, Typography } from "@material-ui/core"; import { COLORS, FONTS } from "@mindee/web-elements.assets"; import { Card } from "@mindee/web-elements.ui.card"; import doctrIcon from "../assets/doctr.svg"; const COMPONENT_ID = "WelcomeMessage"; const useStyles = makeStyles((theme: Theme) => ({ wrapper: { marginBottom: 10, }, link: { color: COLORS.blue, textDecoration: "underline", }, icon: { width: 28, marginBottom: 4, }, })); export default function WelcomeMessage(): JSX.Element { const classes = useStyles(); return ( logo Welcome to the docTR by mindee live demo page Upload an image and select models out{" "} docTR {" "} leveraged by{" "} TensorFlow.js {" "} to offer end-to-end OCR services, directly in your web browser.
To know more about{" "} docTR {" "} check out the dedicated{" "} Github repository.
); }