Files
sase.tr/apps/web/src/routes/dashboard/contact.tsx
Semih Yesilyurt 3c9245bd8b
Some checks failed
QA Gate (P0/P1) / Test affected app (pull_request) Has been cancelled
feat(web): keep sidebar on blog & contact for logged-in users
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>
2026-06-11 17:25:14 +03:00

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>
);
}