diff --git a/app/(application-record)/application-record/page.tsx b/app/(application-record)/application-record/page.tsx index 7cfa20a..dbcd37f 100644 --- a/app/(application-record)/application-record/page.tsx +++ b/app/(application-record)/application-record/page.tsx @@ -3,9 +3,11 @@ import { redirect } from "next/navigation"; import { getUser } from "@/lib/session"; import { getUserApplications } from "@/db/queries"; import { computeStats } from "@/lib/applications"; +import { buildSuggestions } from "@/lib/suggestions"; import { StatsRow } from "@/components/dashboard/stats-row"; import { ApplicationsView } from "@/components/applications/applications-view"; import { NewApplicationButton } from "@/components/applications/application-dialog"; +import { SuggestionsProvider } from "@/components/applications/suggestions-provider"; import { Chatbot } from "@/components/ai-chatbot/chatbot"; export const metadata: Metadata = { @@ -21,19 +23,21 @@ export default async function ApplicationRecord() { const applications = await getUserApplications(user.id); return ( -
- Everything you have applied to, in one place. -
++ Everything you have applied to, in one place. +
+