aboutsummaryrefslogtreecommitdiff
path: root/src/index.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/index.jsx')
-rw-r--r--src/index.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/index.jsx b/src/index.jsx
index 2160d89..0d2c454 100644
--- a/src/index.jsx
+++ b/src/index.jsx
@@ -2,7 +2,7 @@ import React from "react";
import {createRoot} from "react-dom/client";
import {BrowserRouter, Routes, Route} from "react-router-dom";
-import Site from "./components/site/Site.jsx";
+import Greeter from "./components/greeter/Greeter.jsx";
import NotFound from "./components/not_found/NotFound.jsx";
import "./reset.css";
@@ -13,7 +13,7 @@ function BrowserRoutes() {
return (
<BrowserRouter>
<Routes>
- <Route path="/*" element={<Site />} />
+ <Route path="/*" element={<Greeter />} />
<Route path="*" element={<NotFound />} />
</Routes>
</BrowserRouter>