feat: markdown
This commit is contained in:
@@ -211,6 +211,10 @@ const RobotCreate: React.FC = () => {
|
|||||||
alt="Maxun Logo"
|
alt="Maxun Logo"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
<Typography variant="body2" color="text.secondary" mb={3}>
|
||||||
|
Extract structured data from websites in a few clicks.
|
||||||
|
</Typography>
|
||||||
|
|
||||||
{/* Origin URL Input */}
|
{/* Origin URL Input */}
|
||||||
<Box sx={{ width: '100%', maxWidth: 700, mb: 2 }}>
|
<Box sx={{ width: '100%', maxWidth: 700, mb: 2 }}>
|
||||||
<TextField
|
<TextField
|
||||||
@@ -364,21 +368,20 @@ const RobotCreate: React.FC = () => {
|
|||||||
|
|
||||||
<Box sx={{ width: '100%', maxWidth: 700, mb: 2 }}>
|
<Box sx={{ width: '100%', maxWidth: 700, mb: 2 }}>
|
||||||
<TextField
|
<TextField
|
||||||
placeholder="Example: My Blog Article Robot"
|
placeholder="Example: YC Companies Scraper"
|
||||||
variant="outlined"
|
variant="outlined"
|
||||||
fullWidth
|
fullWidth
|
||||||
value={markdownRobotName}
|
value={markdownRobotName}
|
||||||
onChange={(e) => setMarkdownRobotName(e.target.value)}
|
onChange={(e) => setMarkdownRobotName(e.target.value)}
|
||||||
label="Robot Name"
|
|
||||||
sx={{ mb: 2 }}
|
sx={{ mb: 2 }}
|
||||||
/>
|
/>
|
||||||
<TextField
|
<TextField
|
||||||
placeholder="Example: https://example.com/blog/article"
|
placeholder="Example: https://www.ycombinator.com/companies/"
|
||||||
variant="outlined"
|
variant="outlined"
|
||||||
fullWidth
|
fullWidth
|
||||||
value={url}
|
value={url}
|
||||||
onChange={(e) => setUrl(e.target.value)}
|
onChange={(e) => setUrl(e.target.value)}
|
||||||
label="URL to convert"
|
label="Website URL"
|
||||||
/>
|
/>
|
||||||
</Box>
|
</Box>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user