Skip to content

Commit ca3d7ed

Browse files
committed
feat(web): add-Hero-Image-and-update-navbar
1 parent 2458ba0 commit ca3d7ed

File tree

11 files changed

+175
-78
lines changed

11 files changed

+175
-78
lines changed

web/src/app.tsx

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import QueryClientProvider from "context/QueryClientProvider";
99
import StyledComponentsProvider from "context/StyledComponentsProvider";
1010
import RefetchOnBlock from "context/RefetchOnBlock";
1111
import Layout from "layout/index";
12+
import Home from "./pages/Home";
1213

1314
const App: React.FC = () => {
1415
return (
@@ -17,11 +18,12 @@ const App: React.FC = () => {
1718
<RefetchOnBlock />
1819
<Web3Provider>
1920
<IsListProvider>
20-
<SentryRoutes>
21-
<Route path="/" element={<Layout />}>
22-
<Route path="*" element={<h1>404 not found</h1>} />
23-
</Route>
24-
</SentryRoutes>
21+
<SentryRoutes>
22+
<Route path="/" element={<Layout />}>
23+
<Route index element={<Home />} />
24+
<Route path="*" element={<h1>404 not found</h1>} />
25+
</Route>
26+
</SentryRoutes>
2527
</IsListProvider>
2628
</Web3Provider>
2729
</QueryClientProvider>
Lines changed: 34 additions & 5 deletions
Loading

0 commit comments

Comments
 (0)