diff --git a/apps/stage1-clk-transfer/src/components/ui/github.tsx b/apps/stage1-clk-transfer/src/components/ui/github.tsx index 2bcb720..619bcc7 100644 --- a/apps/stage1-clk-transfer/src/components/ui/github.tsx +++ b/apps/stage1-clk-transfer/src/components/ui/github.tsx @@ -28,7 +28,7 @@ * OTHER DEALINGS IN THE SOFTWARE. */ -import { useTheme } from "next-themes"; +import { useTheme } from "@/lib/hooks/use-theme"; import type { SVGProps } from "react"; const Github = (props: SVGProps) => { const { resolvedTheme } = useTheme(); diff --git a/apps/stage2-clk-transfer/src/components/ui/github.tsx b/apps/stage2-clk-transfer/src/components/ui/github.tsx index 2bcb720..619bcc7 100644 --- a/apps/stage2-clk-transfer/src/components/ui/github.tsx +++ b/apps/stage2-clk-transfer/src/components/ui/github.tsx @@ -28,7 +28,7 @@ * OTHER DEALINGS IN THE SOFTWARE. */ -import { useTheme } from "next-themes"; +import { useTheme } from "@/lib/hooks/use-theme"; import type { SVGProps } from "react"; const Github = (props: SVGProps) => { const { resolvedTheme } = useTheme(); diff --git a/apps/www/package.json b/apps/www/package.json index d67ed77..e8026bb 100644 --- a/apps/www/package.json +++ b/apps/www/package.json @@ -21,10 +21,12 @@ "@emotion/is-prop-valid": "^1.3.0", "@linear/sdk": "^31.0.0", "@monaco-editor/react": "^4.6.0", + "@number-flow/react": "^0.5.7", "@radix-ui/react-aspect-ratio": "1.1.1", "@radix-ui/react-avatar": "1.1.1", "@radix-ui/react-collapsible": "1.1.1", "@radix-ui/react-context-menu": "^2.2.6", + "@radix-ui/react-dialog": "^1.1.6", "@radix-ui/react-hover-card": "1.1.1", "@radix-ui/react-icons": "^1.3.2", "@radix-ui/react-menubar": "1.1.1", @@ -49,7 +51,7 @@ "inngest": "^3.21.2", "input-otp": "^1.2.4", "json-beautify": "^1.1.1", - "lucide-react": "^0.454.0", + "lucide-react": "^0.479.0", "mini-svg-data-uri": "^1.4.4", "minimessage-2-html": "1.6.0", "minimessage-js": "^1.1.3", @@ -71,6 +73,7 @@ "react-hot-toast": "^2.4.1", "react-qr-code": "^2.0.15", "react-snowfall": "^2.2.0", + "recharts": "^2.15.1", "rehype-slug": "^6.0.0", "remark-gfm": "^4.0.0", "sonner": "^1.7.0", @@ -81,7 +84,8 @@ "tailwindcss-animate": "^1.0.7", "tailwindcss-patch": "^4.0.0", "turbo": "^2.4.0", - "unplugin-tailwindcss-mangle": "^3.0.1" + "unplugin-tailwindcss-mangle": "^3.0.1", + "vaul": "^1.1.2" }, "devDependencies": { "@clerk/themes": "^2.1.19", diff --git a/apps/www/src/app/globals.css b/apps/www/src/app/globals.css index af017c9..0c05d96 100644 --- a/apps/www/src/app/globals.css +++ b/apps/www/src/app/globals.css @@ -249,6 +249,10 @@ } } +.shiki { + @apply p-4 rounded max-w-[530px] overflow-x-auto; +} + .system-ui-font--font-boundary { font-family: system-ui, diff --git a/apps/www/src/app/layout.tsx b/apps/www/src/app/layout.tsx index a84131c..ee4bc5f 100644 --- a/apps/www/src/app/layout.tsx +++ b/apps/www/src/app/layout.tsx @@ -47,7 +47,6 @@ export default function RootLayout({ -