Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

UX audit: landing page and navigation #280

Merged
merged 29 commits into from
Dec 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
a8e06ec
update docusaurus version
CJ-Rose Dec 9, 2024
ca58da1
Squashed 'packages/website/' content from commit 9885a84
CJ-Rose Dec 9, 2024
983befc
Merge commit 'ca58da1a7991c4d79af3b6e4c3b9408a7c9df0e4' as 'packages/…
CJ-Rose Dec 9, 2024
3f383dc
migrate website into monorepo
CJ-Rose Dec 9, 2024
e0a1b0f
remove old docs directory
CJ-Rose Dec 9, 2024
22d09cf
Squashed 'packages/docs/' content from commit c63fea5
CJ-Rose Dec 9, 2024
3d4e152
Merge commit '22d09cf20c82c4ec2a94664a462deb86a766cf1c' as 'packages/…
CJ-Rose Dec 9, 2024
bccf402
migrate current docs into monorepo
CJ-Rose Dec 9, 2024
8b7a1b8
integrate docs into website
CJ-Rose Dec 9, 2024
09e322c
update NavBar and Footer links
CJ-Rose Dec 10, 2024
79f84f5
fix docs page height, remove DocFooter, fit links in mobile footer
CJ-Rose Dec 11, 2024
e7f4389
add background color to alternating feature sections
CJ-Rose Dec 11, 2024
e6fb6f7
FeatureCrypto: remove outdated token text and adjust spacing
CJ-Rose Dec 11, 2024
f0f3712
FeatureInvoice: adjust item spacing and alignment
CJ-Rose Dec 12, 2024
ccc3f82
FeatureEscrow: change itemized features from grid to list
CJ-Rose Dec 12, 2024
15bcb39
FeatureArbitration: change itemized features from grid to list
CJ-Rose Dec 12, 2024
39e4467
FAQ: update text for token and arbitration sections
CJ-Rose Dec 12, 2024
ada9618
CallToAction: fix item alignment on mobile
CJ-Rose Dec 12, 2024
2b272f5
About page: decrease Hero height
CJ-Rose Dec 12, 2024
8338822
FeatureArbitration: add screenshot
CJ-Rose Dec 15, 2024
7fcd723
remove docs package (necessary files are incorporated into website)
CJ-Rose Dec 16, 2024
005ddd2
remove LexDAO logo from landing and about pages
CJ-Rose Dec 16, 2024
d665db7
FAQ: update accepted token text
CJ-Rose Dec 16, 2024
8461cc2
update lock file
CJ-Rose Dec 16, 2024
8e077d8
fix mismatched package versions and resulting Next.js changes
CJ-Rose Dec 18, 2024
8ede71d
lint and remove unused imports
CJ-Rose Dec 18, 2024
ad60696
update ESLint react rules
CJ-Rose Dec 19, 2024
4ee04ce
update docs to reflect current UI
CJ-Rose Dec 23, 2024
173dace
fixed lint warnings and removed yarn.lock
dan13ram Dec 30, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,13 @@ module.exports = {
'react/prop-types': 'off', // disable prop-types
'react/require-default-props': 'off', // disable require default props
'react/react-in-jsx-scope': 'off', // react in jsx scope
'react/jsx-filename-extension': [2, { extensions: ['.ts', '.tsx'] }],
'react/jsx-filename-extension': [2, { extensions: ['.js', '.jsx', '.ts', '.tsx'] }],
'react/function-component-definition': 'off',
"react/no-array-index-key": "off",
"react/jsx-props-no-spreading": "off",
"no-use-before-define": "off",
"import/no-default-export": "off",
dan13ram marked this conversation as resolved.
Show resolved Hide resolved
"import/prefer-named-exports": "off",

// TS
'@typescript-eslint/no-explicit-any': 'warn', // disable explicit any
Expand Down
2 changes: 1 addition & 1 deletion packages/contracts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"deploy-factory": "hardhat run scripts/deploy-factory.ts --network",
"deploy-spoils-manager": "hardhat run scripts/deploy-spoils-manager.ts --network",
"deploy-zap": "hardhat run scripts/deploy-zap.ts --network",
"flatten-all": "yarn flatten-factory && yarn flatten-instant && yarn flatten-escrow && yarn flatten-updatable && yarn flatten-spoils && yarn flatten-zap && yarn flatten-dao-zap",
"flatten-all": "mkdir -p flat && yarn flatten-factory && yarn flatten-instant && yarn flatten-escrow && yarn flatten-updatable && yarn flatten-spoils && yarn flatten-zap && yarn flatten-dao-zap",
dan13ram marked this conversation as resolved.
Show resolved Hide resolved
"flatten-dao-zap": "hardhat flatten contracts/SafeSplitsDaoEscrowZap.sol > flat/SafeSplitsDaoEscrowZap.sol",
"flatten-escrow": "hardhat flatten contracts/SmartInvoiceEscrow.sol > flat/SmartInvoiceEscrow.sol",
"flatten-factory": "hardhat flatten contracts/SmartInvoiceFactory.sol > flat/SmartInvoiceFactory.sol",
Expand Down
20 changes: 0 additions & 20 deletions packages/docs/.eslintrc.js

This file was deleted.

5 changes: 0 additions & 5 deletions packages/docs/.firebaserc

This file was deleted.

49 changes: 0 additions & 49 deletions packages/docs/CHANGELOG.md

This file was deleted.

67 changes: 0 additions & 67 deletions packages/docs/README.md

This file was deleted.

3 changes: 0 additions & 3 deletions packages/docs/babel.config.js

This file was deleted.

93 changes: 0 additions & 93 deletions packages/docs/docs/FAQ.md

This file was deleted.

17 changes: 0 additions & 17 deletions packages/docs/docs/complete-invoice.md

This file was deleted.

92 changes: 0 additions & 92 deletions packages/docs/docs/creating-a-smart-invoice.md

This file was deleted.

19 changes: 0 additions & 19 deletions packages/docs/docs/deposit-or-release.md

This file was deleted.

Loading