Skip to content

Commit 25d7c44

Browse files
feat: add navbar and footer (#6)
* style: adjust layout of preview tables for improved responsiveness * refactor: pass className prop to preview table components for better layout control * feat: add bellecour chain configuration and injected wallet provider. * feat: add user authentication and avatar selection features * fix: update favicon to use iexec logo and remove unused react.svg file * feat: integrate WagmiProvider for improved wallet management * refactor: update StatusCell type definitions and improve timestamp handling in formatElapsedTime * fix: move @trivago/prettier-plugin-sort-imports dependency devDependencies * fix: better routing, fixing some bugs * feat: add Radix UI Select component and update styles for popover * fix: remove unused QueryClient import from main.tsx * feat: enhance TopNavBar with responsive menu, account button and protocol selector * feat: add IexecAccount component to TopNavBar with copy functionality * style: format Button component for better readability * refactor: improve layout and styling of TopNavBar component * feat: rename TopNavBar component to Navbar and better responsive * fix: update responsive classes in NavBar for better future layout * feat: rename TopNavBar to Navbar for consistency and clarity * feat: add Footer component with social links and navigation * fix: correct start year in Footer component to 2017 * fix: update label for Blockscout link in Footer component * refactor: remove AddressChip component as it is no longer needed * style: format profile.module.css by adding spacing for improved readability * fix: update title in index.html to 'iExec Explorer' for consistency * fix: adjust avatar selection logic to ensure consistent image indexing * fix: update dark theme comments to add a TODO for light and dark themes support * feat: implement useSyncAccountWithUserStore hook for account synchronization * feat: add UnsupportedChain component to handle unsupported blockchain scenarios * fix: enhance UnsupportedChain component to handle unsupported chains when disconnected * fix: adjust padding in Footer component for better responsiveness * feat: replace IexecAccount component with AddressChip for address display and copy functionality * fix: add iExec Account link in navigation
1 parent 69d6049 commit 25d7c44

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+5586
-544
lines changed

.env

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
VITE_POCO_SUBGRAPH_URL="https://thegraph.iex.ec/subgraphs/name/bellecour/poco-v5"
1+
VITE_POCO_SUBGRAPH_URL="https://thegraph.iex.ec/subgraphs/name/bellecour/poco-v5"
2+
VITE_REOWN_PROJECT_ID=b89f75687c01fa0df9e68c903283012d

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
5+
<link rel="icon" type="image/svg+xml" href="/iexec-logo.svg" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Explorer</title>
7+
<title>iExec Explorer</title>
88
</head>
99
<body>
1010
<div id="root"></div>

package-lock.json

Lines changed: 4563 additions & 486 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,20 @@
2020
"@fontsource-variable/mulish": "^5.2.5",
2121
"@fontsource/space-mono": "^5.2.5",
2222
"@hookform/resolvers": "^5.0.1",
23+
"@icons-pack/react-simple-icons": "^12.7.0",
2324
"@radix-ui/react-dialog": "^1.1.7",
2425
"@radix-ui/react-label": "^2.1.3",
26+
"@radix-ui/react-select": "^2.2.2",
2527
"@radix-ui/react-slot": "^1.2.0",
2628
"@radix-ui/react-tabs": "^1.1.4",
2729
"@radix-ui/react-tooltip": "^1.2.0",
30+
"@reown/appkit": "^1.6.9",
31+
"@reown/appkit-adapter-wagmi": "^1.6.9",
2832
"@rollbar/react": "^0.12.1",
2933
"@tailwindcss/vite": "^4.1.3",
3034
"@tanstack/react-query": "^5.74.4",
3135
"@tanstack/react-router": "^1.116.0",
3236
"@tanstack/react-router-devtools": "^1.116.0",
33-
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
3437
"class-variance-authority": "^0.7.1",
3538
"clsx": "^2.1.1",
3639
"graphql": "^16.10.0",
@@ -43,15 +46,18 @@
4346
"tailwind-merge": "^3.2.0",
4447
"tailwindcss": "^4.1.3",
4548
"tw-animate-css": "^1.2.5",
46-
"zod": "^3.24.2"
49+
"viem": "^2.28.0",
50+
"wagmi": "^2.15.0",
51+
"zustand": "^5.0.3"
4752
},
4853
"devDependencies": {
4954
"@0no-co/graphqlsp": "^1.12.16",
5055
"@eslint/js": "^9.21.0",
5156
"@graphql-codegen/cli": "^5.0.5",
5257
"@graphql-codegen/schema-ast": "^4.1.0",
5358
"@parcel/watcher": "^2.5.1",
54-
"@tanstack/router-plugin": "^1.116.1",
59+
"@tanstack/router-plugin": "^1.117.2",
60+
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
5561
"@types/node": "^22.14.1",
5662
"@types/react": "^19.0.10",
5763
"@types/react-dom": "^19.0.4",

src/assets/iexec-logo.svg

Lines changed: 33 additions & 0 deletions
Loading
11.3 KB
Loading
10.3 KB
Loading
13.5 KB
Loading
13.1 KB
Loading
12.8 KB
Loading

0 commit comments

Comments
 (0)