Files
readest/apps/readest-app/src/app/user/layout.tsx
T

12 lines
345 B
TypeScript

import { Metadata } from 'next';
export const metadata: Metadata = {
title: 'Account & Sign In',
description:
'Sign in to your Readest account or manage your subscription, cloud library storage, and account settings.',
};
export default function ProfileLayout({ children }: { children: React.ReactNode }) {
return <>{children}</>;
}