Skip to content

Commit a9cb66b

Browse files
committed
updated SEO metadata
1 parent 4f0ac85 commit a9cb66b

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

src/app/(site)/(auth)/forgot-password/page.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
import React from "react";
22
import ForgotPassword from "@/components/Auth/ForgotPassword";
33
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+
};
49

510
const ForgotPasswordPage = () => {
611
return (

src/app/(site)/(auth)/reset-password/[token]/page.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
import React from "react";
22
import ResetPassword from "@/components/Auth/ResetPassword";
33
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+
};
49

510
const ResetPasswordPage = ({ params }: { params: { token: string } }) => {
611
return (

0 commit comments

Comments
 (0)