Skip to content

Commit

Permalink
Merge branch 'main' of github.com:peersky/daococoa
Browse files Browse the repository at this point in the history
  • Loading branch information
peersky committed Jan 7, 2024
2 parents 944986f + d376417 commit faee634
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 43 deletions.
2 changes: 1 addition & 1 deletion apps/bestofweb/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"@mdx-js/loader": "^2.3.0",
"@mdx-js/react": "^2.3.0",
"@next/mdx": "^13.2.1",
"@peersky/next-web3-chakra": "^0.3.4",
"@peersky/next-web3-chakra": "^0.5.3",
"@types/mdx": "^2.0.3",
"@types/node": "^18.14.1",
"react-pro-sidebar": "^1.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/next-web3-chakra/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@peersky/next-web3-chakra",
"version": "0.3.3",
"version": "0.5.3",
"description": "Web3 enabled react components made for nextjs and chakra ui",
"main": "src/index.ts",
"type": "module",
Expand Down
8 changes: 6 additions & 2 deletions packages/next-web3-chakra/src/layouts/BlogLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,11 @@ const H4 = (props: any) => (
{props.children}
</Heading>
);
const P = (props: any) => <chakra.span py={2}>{props.children}</chakra.span>;
const P = (props: any) => (
<chakra.span fontSize={"xs"} py={2}>
{props.children}
</chakra.span>
);
const ResponsiveImage = (props: any) => {
const docsImportPath = "../apps/bestofweb/public";
const imgSrc = !props.src.startsWith(docsImportPath)
Expand Down Expand Up @@ -100,7 +104,7 @@ const BlogLayout = ({ children, ...props }: { children: any }) => {
return (
<Flex
id="Blog"
px={["0px", "0%", "20%"]}
px={["0px", "0px", "20%"]}
mt={8}
mb="220px"
direction="column"
Expand Down
39 changes: 0 additions & 39 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2882,45 +2882,6 @@
proper-lockfile "^4.1.1"
solidity-ast "^0.4.15"

"@peersky/eth-auth@2.0.0":
version "2.0.0"
resolved "https://registry.yarnpkg.com/@peersky/eth-auth/-/eth-auth-2.0.0.tgz#b9243c63dc07d94d18e7786de0d05ce6f8108d66"
integrity sha512-eVOZ8VJFeP9e6DhysQGHvmr5wpQHl/VjMjc/Uw2PxZvFLK9mSFzD4UGUyi916ZSGmGEsoRbt4/BGlFeoJwKQ6Q==

"@peersky/next-web3-chakra@^0.3.4":
version "0.3.4"
resolved "https://registry.yarnpkg.com/@peersky/next-web3-chakra/-/next-web3-chakra-0.3.4.tgz#3cd05a8fad43801ea536647f809d5cde7abff480"
integrity sha512-HvjkzrE/EfbEJgKuvcqZHgVqaKD76LkR4oCYTi06yGijUXkbSa2H336lIo3DC57L7YXeuKmdXNbvkqBcyA0eyQ==
dependencies:
"@chakra-ui/icons" "^2.0.17"
"@chakra-ui/next-js" "^2.0.1"
"@chakra-ui/react" "^2.5.1"
"@choc-ui/chakra-autocomplete" "^5.1.4"
"@emotion/react" "^11.10.6"
"@emotion/styled" "^11.10.6"
"@peersky/eth-auth" "2.0.0"
"@stripe/stripe-js" "^1.16.0"
axios "1.3.4"
core-js "^3.19.1"
framer-motion "^6.5.1"
moment "^2.29.1"
next "13.2.1"
nprogress "^0.2.0"
papaparse "^5.3.2"
react "^18.2.0"
react-ace "^10.1.0"
react-dom "^18.2.0"
react-dropzone "^14.2.3"
react-icons "^4.3.1"
react-json-view "^1.21.3"
react-pro-sidebar "^1.0.0"
react-query "^3.18.1"
remark-gfm "^3.0.1"
styled-components "^5.3.6"
uuid "^8.3.2"
web3 "^1.8.2"
web3-utils "^1.8.2"

"@pkgr/utils@^2.3.1":
version "2.4.2"
resolved "https://registry.yarnpkg.com/@pkgr/utils/-/utils-2.4.2.tgz#9e638bbe9a6a6f165580dc943f138fd3309a2cbc"
Expand Down

0 comments on commit faee634

Please sign in to comment.