- Eliminated redundant components, pages, and layouts related to authentication (`login`, `register`, `password-reset`, etc.), user settings, admin, and demos. - Simplified the frontend structure by removing unused dynamic imports, forms, and test code. - Refactored configurations and metadata imports to exclude references to removed features. - Streamlined the project for future development and improved maintainability by discarding legacy and unused code.
16 lines
336 B
TypeScript
Executable File
16 lines
336 B
TypeScript
Executable File
/**
|
|
* Root Layout
|
|
*
|
|
* Minimal root layout that passes through to locale-specific layouts.
|
|
* The actual HTML structure and providers are in [locale]/layout.tsx
|
|
* to properly handle locale-specific rendering.
|
|
*/
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return children;
|
|
}
|