Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesbartnik committed Dec 22, 2023
2 parents 54bb790 + 28f5df7 commit 22ea6c5
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 17 deletions.
27 changes: 16 additions & 11 deletions apps/web-connect/index.html
Original file line number Diff line number Diff line change
@@ -1,26 +1,31 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<head>
<meta charset="UTF-8"/>
<link rel="icon" type="image/svg+xml" href="/vite.svg"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>

<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="title" content="Xai Sentry Node">

<!-- Github Pages cache control-->
<meta http-equiv='cache-control' content='no-cache'>
<meta http-equiv='expires' content='0'>
<meta http-equiv='pragma' content='no-cache'>

<link rel="apple-touch-icon" href="/icons/favicon.ico"/>
<link rel="icon" type="image/x-icon" href="/icons/favicon.ico" />
<link rel="icon" type="image/x-icon" href="/icons/favicon.ico"/>
<link rel="icon" type="image/png" sizes="32x32" href="/icons/favicon-32x32.png"/>
<link rel="icon" type="image/png" sizes="16x16" href="/icons/favicon-16x16.png"/>
<link rel="manifest" href="/icons/site.webmanifest"/>
<link rel="mask-icon" href="/icons/safari-pinned-tab.svg"/>
<link rel="shortcut icon" href="/icons/favicon.ico"/>

<title>Xai Sentry Node</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
10 changes: 4 additions & 6 deletions apps/web-connect/src/features/router/AppRoutes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ import axios from "axios";
import {BiLoaderAlt} from "react-icons/bi";
import {Footer} from "@/features/footer/Footer";
import {DropClaim} from "@/features/wallet/routes/DropClaim";
import {ClaimToken} from "@/features/wallet/routes/ClaimToken";
import {TermsAndConditions} from "@/features/wallet/routes/TermsAndConditions";

enum IpBanType {
INVALID_IP = "INVALID_IP",
Expand Down Expand Up @@ -77,12 +75,12 @@ export function AppRoutes() {
<QueryClientProvider client={queryClient}>
<Header/>
<Routes>
<Route path="/" element={<Checkout/>}/>
<Route path="/drop-claim" element={<DropClaim/>}/>
{/*<Route path="/claim-token" element={<ClaimToken/>}/>*/}
{/*<Route path="/xai-airdrop-terms-and-conditions" element={<TermsAndConditions/>}/>*/}
<Route path="/assign-wallet/:operatorAddress" element={<AssignWallet/>}/>
<Route path="/unassign-wallet/:operatorAddress" element={<UnassignWallet/>}/>
<Route path="/drop-claim" element={<DropClaim/>}/>
<Route path="/claim-token" element={<ClaimToken/>}/>
<Route path="/xai-airdrop-terms-and-conditions" element={<TermsAndConditions/>}/>
<Route path="/" element={<Checkout/>}/>
<Route path="*" element={<Navigate to="/" replace={true}/>}/>
</Routes>
<Footer/>
Expand Down

0 comments on commit 22ea6c5

Please sign in to comment.