Skip to content

Commit 895e30a

Browse files
committed
feat: added next bundle analyzer
1 parent 8b8cc3f commit 895e30a

3 files changed

Lines changed: 185 additions & 1 deletion

File tree

package-lock.json

Lines changed: 183 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@
5656
"web-haptics": "^0.0.6"
5757
},
5858
"devDependencies": {
59+
"@next/bundle-analyzer": "^16.2.10",
5960
"@swc-node/register": "^1.11.1",
6061
"@tailwindcss/postcss": "^4.3.2",
6162
"@types/node": "^25.9.4",

src/components/BuyMenu.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export function BuyMenu({ price, priceHeading, priceCaption, subscribeHref, subs
2626
if (!isClient) return null
2727

2828
return createPortal(
29-
<div className="fixed bottom-4 left-1/2 z-50 grid w-[calc(100vw-2.5rem)] max-w-92 -translate-x-1/2 grid-cols-[minmax(0,1fr)_auto] items-center gap-2.5 rounded-3xl border border-white/10 bg-primary/30 p-2.5 shadow-[0_8px_32px_0_rgba(0,0,0,0.45),0_0_0_1px_rgba(255,255,255,0.04)] backdrop-blur-md sm:bottom-6 sm:w-auto sm:max-w-none sm:grid-cols-[auto_auto] sm:gap-6 sm:p-4">
29+
<div className="fixed bottom-4 left-1/2 z-50 grid w-[calc(100vw-2.5rem)] max-w-92 -translate-x-1/2 grid-cols-[minmax(0,1fr)_auto] items-center gap-2.5 rounded-3xl border border-white/10 bg-primary/30 shadow-[0_8px_32px_0_rgba(0,0,0,0.45),0_0_0_1px_rgba(255,255,255,0.04)] backdrop-blur-md sm:bottom-6 sm:w-auto sm:max-w-none sm:grid-cols-[auto_auto] sm:gap-6 py-2.5 px-4 sm:py-2">
3030
<div className="min-w-0">
3131
<span className="text-xs font-semibold tracking-wider text-tertiary uppercase">{priceHeading}</span>
3232
<div className="flex min-w-0 flex-row items-baseline gap-1.5 whitespace-nowrap">

0 commit comments

Comments
 (0)