diff --git a/app/[locale]/auth/forgot-password/layout.tsx b/app/[locale]/auth/forgot-password/layout.tsx new file mode 100644 index 00000000..2d394e06 --- /dev/null +++ b/app/[locale]/auth/forgot-password/layout.tsx @@ -0,0 +1,11 @@ +import { Metadata } from "next"; + +export const metadata: Metadata = { + title: "Media Hub | POLRI", + description: "Media Hub merupakan situs resmi milik Divisi Humas Polri di mana di dalamnya berisi konten-konten yang dapat diakses secara gratis oleh Internal Polri, Jurnalis, Masyarakat Umum, dan KSP.", +}; +const Layout = ({ children }: { children: React.ReactNode }) => { + return <>{children}>; +}; + +export default Layout; \ No newline at end of file diff --git a/app/[locale]/auth/forgot-password/page.tsx b/app/[locale]/auth/forgot-password/page.tsx new file mode 100644 index 00000000..06636a14 --- /dev/null +++ b/app/[locale]/auth/forgot-password/page.tsx @@ -0,0 +1,48 @@ +import { Link } from "@/i18n/routing"; +import ForgotPass from "@/components/partials/auth/forgot-pass"; +import Image from "next/image"; + +const ForgotPassPage = () => { + return ( +