Components
Clean prose styling for an AI assistant's text answer with paragraphs and inline code.

import { TextResponse } from "@/components/ui/text-response";
export default function Default() {
return (
<div className="flex min-h-[360px] w-full items-center justify-center px-8 py-12">
<div className="w-full max-w-[440px]">
<TextResponse>
<p>
Here's a quick summary of the plan. The migration touches{" "}
<strong>three</strong> modules and is safe to run incrementally, so
we can ship it without a maintenance window.
</p>
<p>
I'd recommend starting with the <code>auth</code> service, then
rolling out the <code>billing</code> and <code>notifications</code>{" "}
workers behind a feature flag.
</p>
<p>
Once traffic looks healthy, remove the old <code>legacy_users</code>{" "}
table and we're done.
</p>
</TextResponse>
</div>
</div>
);
}