34 lines
1.1 KiB
JavaScript
34 lines
1.1 KiB
JavaScript
import { createBrowserRouter } from 'react-router-dom'
|
|
import App from './App.jsx'
|
|
import Home from './pages/Home.jsx'
|
|
import About from './pages/About.jsx'
|
|
import Services from './pages/Services.jsx'
|
|
import ServiceDetail from './pages/ServiceDetail.jsx'
|
|
import Industries from './pages/Industries.jsx'
|
|
import IndustryDetail from './pages/IndustryDetail.jsx'
|
|
import Contact from './pages/Contact.jsx'
|
|
import Support from './pages/Support.jsx'
|
|
import NotFound from './pages/NotFound.jsx'
|
|
|
|
const router = createBrowserRouter([
|
|
{
|
|
path: '/',
|
|
element: (
|
|
<App />
|
|
),
|
|
children: [
|
|
{ index: true, element: <Home /> },
|
|
{ path: 'about', element: <About /> },
|
|
{ path: 'services', element: <Services /> },
|
|
{ path: 'services/:slug', element: <ServiceDetail /> },
|
|
{ path: 'industries', element: <Industries /> },
|
|
{ path: 'industries/:slug', element: <IndustryDetail /> },
|
|
{ path: 'contact', element: <Contact /> },
|
|
{ path: 'support', element: <Support /> },
|
|
{ path: '*', element: <NotFound /> },
|
|
],
|
|
},
|
|
])
|
|
|
|
export default router
|