Shitaye-FrontEnd/src/app/profile/page.tsx
“kirukib” 3b41b9052b feat(guest): refine portal navigation and auth routing
Unify guest login/profile paths, add booking-ref CTA entry points, and introduce responsive logged-in navigation with desktop dropdowns and mobile hamburger menu.

Made-with: Cursor
2026-04-27 20:08:05 +03:00

7 lines
167 B
TypeScript

import { redirect } from "next/navigation";
/** @deprecated Use `/guest/profile` */
export default function LegacyProfileRedirect() {
redirect("/guest/profile");
}