aboutsummaryrefslogtreecommitdiff
path: root/src/main.tsx
blob: cf9a20c619723ad2147a73b060c21d0b7b8c02ed (plain)
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
import { createRoot } from 'react-dom/client'
import { createBrowserRouter, Navigate, RouterProvider } from 'react-router'
import { StopList } from './pages/StopList.tsx'
import { Estimates } from './pages/Estimates.tsx'
import { StopMap } from './pages/Map.tsx'
import { Layout } from './Layout.tsx'
import './styles/Pages.css'

const router = createBrowserRouter([
  {
    path: '/',
    element: <Layout><Navigate to="/stops" /></Layout>,
  },
  {
    path: '/stops',
    element: <Layout><StopList /></Layout>,
  },
  {
    path: '/map',
    element: <Layout><StopMap /></Layout>,
  },
  {
    path: '/estimates/:stopId',
    element: <Layout><Estimates /></Layout>
  },
  {
    path: '/about',
    element: <Layout><About /></Layout>
  }
])

function About() {
  return (
    <div className="page-container about-page">
      <h1 className="page-title">About InfoBus App</h1>
      <p className="about-description">This application helps you find bus stops and check bus arrival estimates.</p>
      <p className="about-version">Version 1.0.0</p>
    </div>
  )
}

createRoot(document.getElementById('root')!).render(
  <RouterProvider router={router} />,
)