mirror of
https://github.com/fosrl/pangolin.git
synced 2026-04-29 09:12:56 +00:00
add meta titles to auth pages
This commit is contained in:
13
src/app/auth/login/device/success/layout.tsx
Normal file
13
src/app/auth/login/device/success/layout.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
import type { Metadata } from "next";
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Device Authorized"
|
||||
};
|
||||
|
||||
export default function DeviceAuthSuccessLayout({
|
||||
children
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return <>{children}</>;
|
||||
}
|
||||
Reference in New Issue
Block a user