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
7 lines
167 B
TypeScript
7 lines
167 B
TypeScript
import { redirect } from "next/navigation";
|
|
|
|
/** @deprecated Use `/guest/profile` */
|
|
export default function LegacyProfileRedirect() {
|
|
redirect("/guest/profile");
|
|
}
|