Spaces:
Sleeping
Sleeping
File size: 2,410 Bytes
15975c4 d909077 15975c4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
import { Box, Card, CardContent, Chip, Divider, LinearProgress, Stack, Typography } from "@mui/material";
import MainContainer from "../../components/Container/MainContainer";
import { ChecklistSharp, DeveloperBoard, FlashOn, LineAxis, Settings, SettingsTwoTone, UploadFile } from "@mui/icons-material";
import { useCallback, useEffect, useState } from "react";
import { Link, useNavigate, useNavigation } from "react-router-dom";
const Express = () => {
const navigate = useNavigate()
return (
<>
<MainContainer>
<Box
sx={{
justifyContent: "center",
display: "flex",
height: "99%",
alignItems: "center",
}}
>
<Stack sx={{ height: '30vh', borderRadius: '12px', gap: "30px", minWidth: "20vw", maxWidth:"300px"}}>
<Card variant="outlined" onClick={() => navigate("/Inference")}>
<Box>
<CardContent sx={{ display: "flex", justifyItems: "center", flexDirection: "row-reverse", alignItems:"center", justifyContent: "flex-end", userSelect: "none", gap:"30px"}}>
<Box sx={{ display: "flex", flexDirection:"column" }}>
<Typography variant="h5">Express generation</Typography>
<Typography variant="body1" fontStyle={"italic"}>TAL-Noisemaker synthesizer and recommended config is used</Typography>
</Box>
<FlashOn sx={{ fontSize: "40px", color: "inherit" }} />
</CardContent>
</Box>
</Card>
<Box></Box>
<Divider>Or</Divider>
<Card variant="outlined" onClick={() => navigate("/")}>
<Box sx={{ display: "inherit"}}>
<CardContent sx={{ display: "flex", justifyItems: "center", flexDirection: "row-reverse", alignItems:"center", justifyContent: "flex-end", gap:"30px", userSelect: "none"}}>
<Box sx={{ display: "flex", flexDirection:"column" }}>
<Typography variant="h5">Custom generation</Typography>
<Typography variant="body1" fontStyle={"italic"}>Bring your own VST and customize your model</Typography>
</Box>
<Settings sx={{ fontSize: "40px", color: "inherit" }} />
</CardContent>
</Box>
</Card>
</Stack>
</Box>
</MainContainer>
</>
);
};
export default Express;
|