Skip to content

Commit 7c0e716

Browse files
committed
Style Connect app (WIP)
1 parent aab8eed commit 7c0e716

46 files changed

Lines changed: 2386 additions & 1683 deletions

Some content is hidden

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

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
22

apps/connect/.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
routeTree.gen.ts

apps/connect/.vscode/settings.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"editor.formatOnSave": true,
3+
"editor.defaultFormatter": "esbenp.prettier-vscode",
4+
"editor.tabSize": 2
5+
}

apps/connect/components.json

Lines changed: 0 additions & 20 deletions
This file was deleted.

apps/connect/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />

apps/connect/package.json

Lines changed: 28 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -5,38 +5,43 @@
55
"type": "module",
66
"scripts": {
77
"dev": "vite --force",
8-
"preview": "vite preview"
8+
"preview": "vite preview",
9+
"lint": "biome check",
10+
"lint:fix": "biome check --write --unsafe",
11+
"format": "prettier --write --list-different .",
12+
"format:check": "prettier --check .",
13+
"check": "pnpm run lint && pnpm run format:check",
14+
"check:fix": "pnpm run lint:fix && pnpm run format"
915
},
1016
"dependencies": {
17+
"@base-ui-components/react": "1.0.0-beta.0",
1118
"@graphprotocol/hypergraph": "workspace:*",
1219
"@graphprotocol/hypergraph-react": "workspace:*",
13-
"@privy-io/react-auth": "^2.13.0",
14-
"@radix-ui/react-avatar": "^1.1.9",
15-
"@radix-ui/react-icons": "^1.3.2",
16-
"@radix-ui/react-slot": "^1.2.2",
17-
"@tanstack/react-query": "^5.75.5",
18-
"@tanstack/react-router": "^1.120.2",
19-
"@xstate/store": "^3.5.1",
20-
"class-variance-authority": "^0.7.1",
20+
"@privy-io/react-auth": "^2.16.0",
21+
"@tanstack/react-query": "^5.81.2",
22+
"@tanstack/react-router": "^1.121.34",
23+
"@xstate/store": "^3.7.0",
2124
"clsx": "^2.1.1",
22-
"effect": "^3.16.3",
23-
"framer-motion": "^12.10.1",
24-
"lucide-react": "^0.508.0",
25+
"effect": "^3.16.8",
26+
"lucide-react": "^0.522.0",
2527
"react": "^19.1.0",
2628
"react-dom": "^19.1.0",
27-
"tailwind-merge": "^3.2.0",
28-
"tailwindcss-animate": "^1.0.7",
29-
"viem": "^2.30.6",
29+
"tailwind-merge": "^3.3.1",
30+
"viem": "^2.31.4",
3031
"vite": "^6.3.5"
3132
},
3233
"devDependencies": {
33-
"@tailwindcss/vite": "^4.1.5",
34-
"@tanstack/router-devtools": "^1.120.2",
35-
"@tanstack/router-plugin": "^1.120.2",
36-
"@types/node": "^22.15.15",
37-
"@types/react": "^19.1.3",
38-
"@types/react-dom": "^19.1.3",
39-
"@vitejs/plugin-react": "^4.4.1",
40-
"tailwindcss": "^4.1.5"
34+
"@tailwindcss/vite": "^4.1.10",
35+
"@tanstack/router-devtools": "^1.121.34",
36+
"@tanstack/router-plugin": "^1.121.34",
37+
"@types/node": "^22.15.32",
38+
"@types/react": "^19.1.8",
39+
"@types/react-dom": "^19.1.6",
40+
"@vitejs/plugin-react": "^4.6.0",
41+
"prettier": "^3.6.0",
42+
"prettier-plugin-tailwindcss": "^0.6.13",
43+
"tailwindcss": "^4.1.10",
44+
"unplugin-fonts": "^1.3.1",
45+
"vite-plugin-svgr": "^4.3.0"
4146
}
4247
}

apps/connect/prettier.config.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
export default {
2+
singleQuote: true,
3+
printWidth: 120,
4+
plugins: ['prettier-plugin-tailwindcss'],
5+
tailwindPreserveWhitespace: true,
6+
tailwindFunctions: ['cn'],
7+
};

apps/connect/src/Boot.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export function Boot() {
5252
loginMethods: ['email', 'google'],
5353
appearance: {
5454
theme: 'light',
55-
accentColor: '#676FFF',
55+
accentColor: '#6833ff',
5656
},
5757
embeddedWallets: {
5858
createOnLogin: 'users-without-wallets',
53.9 KB
Binary file not shown.
49.2 KB
Binary file not shown.

0 commit comments

Comments
 (0)