Add login-page site gate and refresh marketing site for complex-care positioning.

Replace HTTP Basic Auth with a branded /login flow and signed session cookie, using Next.js 16's proxy convention for route protection.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-06-26 02:21:58 -04:00
co-authored by Cursor
parent d521c66903
commit b0636ba5ce
18 changed files with 877 additions and 252 deletions
+16
View File
@@ -0,0 +1,16 @@
import { ScreenBackground } from "~/components/screen-background";
import { SiteFooter } from "~/components/site-footer";
import { SiteHeader } from "~/components/site-header";
export default function MarketingLayout({
children,
}: Readonly<{ children: React.ReactNode }>) {
return (
<>
<ScreenBackground />
<SiteHeader />
<main>{children}</main>
<SiteFooter />
</>
);
}