File size: 951 Bytes
15975c4
 
d909077
15975c4
 
d909077
 
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
import { routerType } from "../types/router.types";
import About from "./About/About";
import Inference from "./Inference/Inference";
import Home from "./Home/Home";
import Express from "./Express/Express";
import Results from "./Inference/Results/Results";
import CustomizeVST from "./Inference/CustomizeVST/CustomizeVST";

const pagesData: routerType[] = [
    {
        path: "Home",
        element: <Home />,
        title: "Home",
    },
    {
        path: "Inference",
        element: <Inference/>,
        title: "Inference"
    },
    {
        path: "About",
        element: <About />,
        title: "about"
    },
    {
        path: "Express",
        element: <Express />,
        title: "Express"
    },
    {
        path: "CustomizeVST",
        element: <CustomizeVST />,
        title: "CustomizeVST"
    },
    {
        path: "Results",
        element: <Results/>,
        title: "Results"
    },
];

export default pagesData;