added a page to decribe effects of an impact on earth

This commit is contained in:
Jordan Yamada
2024-05-18 19:58:34 +00:00
parent 6b4104b9ce
commit 2241d3f65f
3 changed files with 91 additions and 24 deletions

View File

@@ -4,6 +4,7 @@ import App from "./App";
import Main from "./pages/main";
import Scenario from "./pages/scenario";
import About from "./pages/about";
import Effects from "./pages/effects";
const router = createBrowserRouter([
{
path: "/",
@@ -20,6 +21,10 @@ const router = createBrowserRouter([
{
path: 'about/',
element: <About />
},
{
path: 'effects/',
element: <Effects />
}
],