Some checks failed
QA Gate (P0/P1) / Test affected app (pull_request) Has been cancelled
Sidebar linked /blog and /contact pointed at public marketing pages, so clicking them dropped the user out of the dashboard shell. Extract page content into shared components (blog-content, contact-content) and add dashboard-wrapped routes /dashboard/blog, /dashboard/blog/$slug and /dashboard/contact; sidebar now links to those. Public SEO pages stay unchanged and remain the canonical URLs. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
15 lines
351 B
TypeScript
15 lines
351 B
TypeScript
import { ContactContent } from "@/components/contact-content";
|
|
import { createFileRoute } from "@tanstack/react-router";
|
|
|
|
export const Route = createFileRoute("/dashboard/contact")({
|
|
component: DashboardContactPage,
|
|
});
|
|
|
|
function DashboardContactPage() {
|
|
return (
|
|
<div className="mx-auto max-w-5xl">
|
|
<ContactContent />
|
|
</div>
|
|
);
|
|
}
|