Skip to content

Commit

Permalink
feat(newsletter): update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
2075 committed Aug 22, 2022
1 parent fa6741a commit e364476
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 48 deletions.
9 changes: 5 additions & 4 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,9 @@ module.exports = {
APP_VERSION: pkg.version,
VERCEL_GITHUB_COMMIT_REF: process.env.VERCEL_GITHUB_COMMIT_REF || 'unknown',
},
poweredByHeader: 'gamedao.co loves you',
experiments: {
topLevelAwait: true,
}
poweredByHeader: false,
// 'gamedao.co loves you',
// experiments: {
// topLevelAwait: true,
// }
}
64 changes: 32 additions & 32 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,57 +13,57 @@
"test": "missing"
},
"dependencies": {
"@emotion/cache": "^11.5.0",
"@emotion/react": "^11.8.2",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.8.1",
"@emotion/cache": "^11.10.1",
"@emotion/react": "^11.10.0",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@google/model-viewer": "^1.10.1",
"@hookform/resolvers": "^2.8.8",
"@iconify/icons-eva": "^1.2.2",
"@iconify/icons-ic": "^1.2.3",
"@hookform/resolvers": "^2.9.7",
"@iconify/icons-eva": "^1.2.3",
"@iconify/icons-ic": "^1.2.10",
"@iconify/react": "^3.2.0",
"@mui/icons-material": "^5.5.1",
"@mui/lab": "^5.0.0-alpha.78",
"@mui/material": "^5.5.1",
"cross-undici-fetch": "^0.1.27",
"@mui/icons-material": "^5.8.4",
"@mui/lab": "^5.0.0-alpha.95",
"@mui/material": "^5.10.1",
"cross-undici-fetch": "^0.4.14",
"deepmerge": "^4.2.2",
"express": "^4.17.3",
"fathom-client": "^3.4.1",
"fathom-client": "^3.5.0",
"lodash": "^4.17.21",
"next": "12.1.0",
"react": "^17.0.2",
"next": "12.2.5",
"react": "^18.2.0",
"react-3d-viewer": "^1.0.12",
"react-dom": "^17.0.2",
"react-hook-form": "^7.28.1",
"react-dom": "^18.2.0",
"react-hook-form": "^7.34.2",
"react-icons": "^4.3.1",
"react-mailchimp-subscribe": "^2.1.3",
"react-material-ui-carousel": "^3.3.3",
"react-reveal": "^1.2.2",
"react-toastify": "^8.2.0",
"react-toastify": "^9.0.8",
"yup": "^0.32.11"
},
"devDependencies": {
"@changesets/cli": "^2.21.1",
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@commitlint/prompt-cli": "^16.2.3",
"@changesets/cli": "^2.24.3",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@commitlint/prompt-cli": "^17.0.3",
"@picgo/bump-version": "^1.0.3",
"@types/node": "^17.0.21",
"@types/react": "^17.0.40",
"commitizen": "^4.2.3",
"concurrently": "^7.0.0",
"@types/node": "^18.7.9",
"@types/react": "^18.0.17",
"commitizen": "^4.2.5",
"concurrently": "^7.3.0",
"conventional-changelog": "^3.1.24",
"cz-customizable": "^6.2.0",
"cz-customizable": "^6.9.1",
"dotenv": "^16.0.0",
"eslint": "^8.11.0",
"eslint-config-next": "^12.1.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"eslint": "^8.22.0",
"eslint-config-next": "^12.2.5",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"nextjs-sitemap-generator": "^1.3.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.0",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"typescript": "^4.6.2",
"typescript": "^4.7.4",
"wsrun": "^5.2.1"
},
"config": {
Expand Down
26 changes: 14 additions & 12 deletions src/layouts/default/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,18 +35,20 @@ export function Layout({ showHeader, showFooter, showSidebar, children, noContai
>

<Box sx={{ minHeight: '100vh', p: 0, m: 0 }}>
<Box
sx={{
overflowX: 'hidden',
minHeight: '100vh',
display: 'flex',
flexDirection: 'column',
}}
>
{ showHeader && <Header /> }
{ noContainer ? { children } : <Content>{children}</Content> }
</Box>
{ showFooter && <Footer /> }
<>
<Box
sx={{
overflowX: 'hidden',
minHeight: '100vh',
display: 'flex',
flexDirection: 'column',
}}
><>
{ showHeader && <Header /> }
{ noContainer ? { children } : <Content>{children}</Content> }
</></Box>
{ showFooter && <Footer /> }
</>
</Box>

</Box>
Expand Down

1 comment on commit e364476

@vercel
Copy link

@vercel vercel bot commented on e364476 Aug 22, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.