Spaces:
Sleeping
Sleeping
| 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; |