Leon4gr45's picture
Upload folder using huggingface_hub (part 7)
ec4551b verified
Raw
History Blame Contribute Delete
459 Bytes
export const dynamic = 'force-dynamic';
import { Metadata } from 'next';
import { AfterActivate } from '@gitroom/frontend/components/auth/after.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 <AfterActivate />;
}