Some checks failed
tests / ci (pull_request) Has been cancelled
- Changed user creation to use 'username' instead of 'name'. - Added UserProfile model with relationships to User and gender enum. - Updated validation rules for username and email. - Modified migrations to create user_profiles table and adjust users table. - Updated seeder to create users with profiles. - Translated various UI texts to Indonesian and improved layout components.
18 lines
388 B
TypeScript
18 lines
388 B
TypeScript
import AuthLayoutTemplate from '@/layouts/auth/auth-split-layout';
|
|
|
|
export default function AuthLayout({
|
|
title = '',
|
|
description = '',
|
|
children,
|
|
}: {
|
|
title?: string;
|
|
description?: string;
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<AuthLayoutTemplate title={title} description={description}>
|
|
{children}
|
|
</AuthLayoutTemplate>
|
|
);
|
|
}
|