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
24 lines
636 B
TypeScript
24 lines
636 B
TypeScript
import { Suspense } from "react";
|
|
import { ShitayeLogoLoader } from "@/components/ShitayeLogoLoader";
|
|
import { LoginPageClient } from "./LoginPageClient";
|
|
|
|
export const metadata = {
|
|
title: "Sign in",
|
|
description:
|
|
"Guest sign-in — OTP, password, social (mock), or booking reference at Shitaye Suite Hotel.",
|
|
};
|
|
|
|
export default function GuestLoginPage() {
|
|
return (
|
|
<Suspense
|
|
fallback={
|
|
<div className="flex min-h-[50vh] items-center justify-center bg-[var(--color-bg)]">
|
|
<ShitayeLogoLoader label="Loading sign-in…" />
|
|
</div>
|
|
}
|
|
>
|
|
<LoginPageClient />
|
|
</Suspense>
|
|
);
|
|
}
|