File tree 2 files changed +10
-0
lines changed
2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 1
1
import React from "react" ;
2
2
import ForgotPassword from "@/components/Auth/ForgotPassword" ;
3
3
import Breadcrumb from "@/components/Common/Breadcrumb" ;
4
+ import { Metadata } from "next" ;
5
+
6
+ export const metadata : Metadata = {
7
+ title : "Forgot Password | Play SaaS Starter Kit and Boilerplate for Next.js" ,
8
+ } ;
4
9
5
10
const ForgotPasswordPage = ( ) => {
6
11
return (
Original file line number Diff line number Diff line change 1
1
import React from "react" ;
2
2
import ResetPassword from "@/components/Auth/ResetPassword" ;
3
3
import Breadcrumb from "@/components/Common/Breadcrumb" ;
4
+ import { Metadata } from "next" ;
5
+
6
+ export const metadata : Metadata = {
7
+ title : "Reset Password | Play SaaS Starter Kit and Boilerplate for Next.js" ,
8
+ } ;
4
9
5
10
const ResetPasswordPage = ( { params } : { params : { token : string } } ) => {
6
11
return (
You can’t perform that action at this time.
0 commit comments