File tree Expand file tree Collapse file tree 3 files changed +24
-12
lines changed Expand file tree Collapse file tree 3 files changed +24
-12
lines changed Original file line number Diff line number Diff line change 1
1
import Page from "./page" ;
2
- export const metadata = {
3
- title : 'Reset Password - Open PRO' ,
4
- description : 'Page description' ,
5
- }
2
+ import { constructMetadata } from "@/lib/utils"
3
+ import { Metadata } from "next/types"
4
+
5
+ export const metadata : Metadata = constructMetadata ( {
6
+ title : 'Reset Password' ,
7
+ description : 'Reset your password' ,
8
+ canonical : '/reset-password' ,
9
+ } )
6
10
7
11
export default Page ;
Original file line number Diff line number Diff line change 1
1
import Page from "./page" ;
2
- export const metadata = {
3
- title : 'Sign In - Open PRO' ,
4
- description : 'Page description' ,
5
- }
2
+ import { constructMetadata } from "@/lib/utils"
3
+ import { Metadata } from "next/types"
4
+
5
+ export const metadata : Metadata = constructMetadata ( {
6
+ title : 'Sign In' ,
7
+ description : 'Sign in to your account' ,
8
+ canonical : '/signin' ,
9
+ } )
6
10
7
11
export default Page ;
Original file line number Diff line number Diff line change 1
1
import Page from "./page" ;
2
- export const metadata = {
3
- title : 'Sign Up - Open PRO' ,
4
- description : 'Page description' ,
5
- }
2
+ import { constructMetadata } from "@/lib/utils"
3
+ import { Metadata } from "next/types"
4
+
5
+ export const metadata : Metadata = constructMetadata ( {
6
+ title : 'Sign Up' ,
7
+ description : 'Sign up for an account' ,
8
+ canonical : '/signup' ,
9
+ } )
6
10
7
11
export default Page ;
You can’t perform that action at this time.
0 commit comments