Skip to content

Commit

Permalink
chore: bump dependencies (#1411)
Browse files Browse the repository at this point in the history
  • Loading branch information
sasicodes committed May 17, 2024
1 parent 3e5240b commit 819f54f
Show file tree
Hide file tree
Showing 8 changed files with 96 additions and 51 deletions.
2 changes: 1 addition & 1 deletion apps/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"hono": "^4.3.7",
"linkedom": "^0.18.0",
"ua-parser-js": "^1.0.37",
"viem": "^2.10.8",
"viem": "^2.10.9",
"zod": "^3.23.8"
},
"devDependencies": {
Expand Down
6 changes: 3 additions & 3 deletions apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"dayjs": "^1.11.11",
"emoji-mart": "^5.6.0",
"filereader-stream": "^2.0.0",
"framer-motion": "^11.2.2",
"framer-motion": "^11.2.4",
"graphql": "^16.8.1",
"idb-keyval": "^6.2.1",
"interweave": "^13.1.0",
Expand All @@ -40,8 +40,8 @@
"react-use-websocket": "^4.8.1",
"textarea-caret": "^3.1.0",
"uuid": "^9.0.1",
"viem": "^2.10.8",
"wagmi": "^2.8.8",
"viem": "^2.10.9",
"wagmi": "^2.9.1",
"zod": "^3.23.8",
"zustand": "^4.5.2"
},
Expand Down
2 changes: 2 additions & 0 deletions apps/web/src/components/Home/TopSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import GitcoinAlert from './GitcoinAlert'
import LatestBytes from './LatestBytes'
import LensManagerAlert from './LensManagerAlert'
import WelcomeAlert from './WelcomeAlert'
import ZorbAlert from './ZorbAlert'

const TopSection = () => {
const sectionRef = useRef<HTMLDivElement>(null)
Expand All @@ -21,6 +22,7 @@ const TopSection = () => {
{!activeProfile?.id && <WelcomeAlert />}
<GitcoinAlert />
<LensManagerAlert />
<ZorbAlert />
<LatestBytes />
</div>
</div>
Expand Down
30 changes: 30 additions & 0 deletions apps/web/src/components/Home/ZorbAlert.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import { STATIC_ASSETS, TAPE_APP_NAME } from '@tape.xyz/constants'
import { imageCdn } from '@tape.xyz/generic'
import { Button } from '@tape.xyz/ui'
import Link from 'next/link'
import React from 'react'

const ZorbAlert = () => {
return (
<div className="tape-border rounded-large ultrawide:h-[400px] relative flex h-[350px] w-[300px] flex-none overflow-hidden">
<div className="to-brand-500 via-brand-500/90 absolute inset-0 z-[1] h-full w-full bg-gradient-to-b from-transparent" />
<img
src={imageCdn(`${STATIC_ASSETS}/images/zorb.png`, 'SQUARE')}
className="absolute inset-0 size-full object-cover"
alt="cover"
/>
<div className="ultrawide:p-8 relative z-10 flex h-full flex-col justify-end space-y-4 p-4 text-left text-white md:p-6">
<div className="text-3xl font-bold">
Mint your free {TAPE_APP_NAME} Zorb!
</div>
<div className="flex">
<Link href="/zorb" target="_blank">
<Button>Mint</Button>
</Link>
</div>
</div>
</div>
)
}

export default ZorbAlert
2 changes: 1 addition & 1 deletion packages/helpers/browser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
},
"devDependencies": {
"@aws-sdk/client-s3": "3.577.0",
"@aws-sdk/lib-storage": "3.577.0",
"@aws-sdk/lib-storage": "3.578.0",
"@livepeer/react": "^3.1.9",
"axios": "^1.6.7",
"next": "^14.2.3",
Expand Down
2 changes: 1 addition & 1 deletion packages/helpers/generic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"@lens-protocol/metadata": "^1.2.0",
"axios": "^1.6.7",
"dayjs-twitter": "^0.5.0",
"viem": "^2.10.8"
"viem": "^2.10.9"
},
"devDependencies": {
"@tape.xyz/config": "workspace:*",
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@tippyjs/react": "^4.2.6",
"framer-motion": "^11.2.2",
"framer-motion": "^11.2.4",
"next-themes": "^0.3.0",
"react": "^18.3.1",
"tippy.js": "^6.3.7"
Expand Down
101 changes: 57 additions & 44 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

0 comments on commit 819f54f

Please sign in to comment.