14 lines
443 B
TypeScript
14 lines
443 B
TypeScript
export const dynamic = 'force-dynamic';
|
|
import { Metadata } from 'next';
|
|
import { Activate } from '@gitroom/frontend/components/auth/activate';
|
|
import { isGeneralServerSide } from '@gitroom/helpers/utils/is.general.server.side';
|
|
export const metadata: Metadata = {
|
|
title: `${
|
|
isGeneralServerSide() ? 'Postiz' : 'Gitroom'
|
|
} - Activate your account`,
|
|
description: '',
|
|
};
|
|
export default async function Auth() {
|
|
return <Activate />;
|
|
}
|