feat: page titles
This commit is contained in:
parent
27183220a4
commit
1ae0638d3c
|
|
@ -1,5 +1,10 @@
|
|||
import { ForgotReturn } from '@gitroom/frontend/components/auth/forgot-return';
|
||||
import { Metadata } from 'next';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Gitroom Forgot Password',
|
||||
description: '',
|
||||
};
|
||||
export default async function Auth(params: { params: { token: string } }) {
|
||||
return <ForgotReturn token={params.params.token} />;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,10 @@
|
|||
import {Forgot} from "@gitroom/frontend/components/auth/forgot";
|
||||
import {Metadata} from "next";
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Gitroom Forgot Password',
|
||||
description: '',
|
||||
};
|
||||
|
||||
export default async function Auth() {
|
||||
return (
|
||||
|
|
|
|||
|
|
@ -1,4 +1,10 @@
|
|||
import {Login} from "@gitroom/frontend/components/auth/login";
|
||||
import {Metadata} from "next";
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Gitroom Login',
|
||||
description: '',
|
||||
};
|
||||
|
||||
export default async function Auth() {
|
||||
return (
|
||||
|
|
|
|||
|
|
@ -1,7 +1,11 @@
|
|||
import {Register} from "@gitroom/frontend/components/auth/register";
|
||||
import { Register } from '@gitroom/frontend/components/auth/register';
|
||||
import { Metadata } from 'next';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Gitroom Register',
|
||||
description: '',
|
||||
};
|
||||
|
||||
export default async function Auth() {
|
||||
return (
|
||||
<Register />
|
||||
);
|
||||
return <Register />;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue