Skip to content

Commit

Permalink
default light theme
Browse files Browse the repository at this point in the history
  • Loading branch information
arjanjohan committed Jul 8, 2024
1 parent b6a0e0a commit 32975d3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,9 @@ Visit your app on: `http://localhost:3000`. You can interact with your smart con
- Edit your frontend homepage at `packages/nextjs/app/page.tsx`. For guidance on [routing](https://nextjs.org/docs/app/building-your-application/routing/defining-routes) and configuring [pages/layouts](https://nextjs.org/docs/app/building-your-application/routing/pages-and-layouts) checkout the Next.js documentation.
<!-- - Edit your smart contract test in: `packages/hardhat/test`. To run test use `yarn hardhat:test` -->

## TODO:
## Next steps

For this hackathon I kept the scope small due to the time constraints. I build only the most essential and useful features, so that developers can start using Scaffold Move right away. However, there is much more that I want to add to this project after the hackathon. If you have any ideas or suggestions, please reach out and I will add it to this list.

- Styling wallet connect button
- Store network data in scaffold-config
Expand All @@ -87,6 +89,7 @@ Visit your app on: `http://localhost:3000`. You can interact with your smart con
- Add `aptos init` script that runs `aptos init` and then copies the new address to the `move.toml` file.
- Fix colors for dark mode
- Ensure export default deployedContracts satisfies GenericContractsDeclaration
- Add block explorer page

## Links

Expand Down
2 changes: 1 addition & 1 deletion packages/nextjs/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const ScaffoldEthApp = ({ children }: { children: React.ReactNode }) => {
return (
<html suppressHydrationWarning>
<body>
<ThemeProvider enableSystem>
<ThemeProvider enableSystem={false} defaultTheme="light">
<ScaffoldEthAppWithProviders>{children}</ScaffoldEthAppWithProviders>
</ThemeProvider>
</body>
Expand Down

0 comments on commit 32975d3

Please sign in to comment.