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
17 lines
354 B
TypeScript
17 lines
354 B
TypeScript
/**
|
|
* Back-compat re-exports — canonical implementation is GuestSessionContext.
|
|
*/
|
|
export {
|
|
GuestSessionProvider,
|
|
GuestSessionProvider as AuthProvider,
|
|
useAuth,
|
|
useGuestSession,
|
|
} from "./GuestSessionContext";
|
|
export type {
|
|
BookingRefSession,
|
|
GuestSession,
|
|
MemberSession,
|
|
OrderCategory,
|
|
OrderRecord,
|
|
} from "./GuestSessionContext";
|