add meta titles to auth pages

This commit is contained in:
miloschwartz
2026-04-22 16:09:16 -07:00
parent 2a281ec002
commit c956e0d401
14 changed files with 85 additions and 1 deletions

View File

@@ -17,6 +17,11 @@ import { priv } from "@app/lib/api";
import { AxiosResponse } from "axios";
import { LoginFormIDP } from "@app/components/LoginForm";
import { ListIdpsResponse } from "@server/routers/idp";
import type { Metadata } from "next";
export const metadata: Metadata = {
title: "Log In"
};
export const dynamic = "force-dynamic";