12 lines
345 B
TypeScript
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}</>;
|
|
}
|