Aaron Heckmann 2025-05-23 03:42:04 -07:00 committed by GitHub
parent a3b9152a9b
commit f8ca1e46b1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
142 changed files with 92 additions and 16 deletions

View file

@ -0,0 +1,9 @@
import { Metadata } from "next";
export const metadata: Metadata = {
title: "Reset Password - Plane",
};
export default function ResetPasswordLayout({ children }: { children: React.ReactNode }) {
return children;
}