Shitaye-FrontEnd/src/app/guest/login/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

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