readest / apps /readest-app /src /app /user /layout.tsx
dlxj
init
4e1096a
import { Metadata } from 'next';
export const metadata: Metadata = {
title: 'User Account',
description: 'Manage your account settings and subscription',
};
export default function ProfileLayout({ children }: { children: React.ReactNode }) {
return <>{children}</>;
}