實作完整分享、刪除、下載報告功能

This commit is contained in:
2025-09-24 00:01:37 +08:00
parent 69c9323038
commit 99ff9654d9
35 changed files with 4779 additions and 45 deletions

View File

@@ -5,6 +5,7 @@ import type React from "react"
import { Analytics } from "@vercel/analytics/next"
import { useSearchParams } from "next/navigation"
import { Suspense } from "react"
import { Toaster } from "@/components/ui/toaster"
export default function ClientLayout({
children,
@@ -16,6 +17,7 @@ export default function ClientLayout({
return (
<>
<Suspense fallback={<div>Loading...</div>}>{children}</Suspense>
<Toaster />
<Analytics />
</>
)