styled userbox page and removed sticky nav
This commit is contained in:
@ -107,7 +107,17 @@ export const SystemVoiceCustomization: FC<SystemVoiceSelectionProps> = ({
|
||||
};
|
||||
|
||||
return (
|
||||
<main className="flex">
|
||||
<main className="flex flex-col items-center space-y-6">
|
||||
{/* Avatar Customization Section */}
|
||||
<div className="w-full flex justify-center">
|
||||
<div className="">
|
||||
{Object.entries(AvatarTextures).map(([key, { src }]) => (
|
||||
<div>
|
||||
<img className="w-[200px]" src={src} alt={""} />
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
<Form {...form}>
|
||||
<form onSubmit={form.handleSubmit(onSubmit)} className="space-y-6">
|
||||
<FormField
|
||||
@ -178,13 +188,6 @@ export const SystemVoiceCustomization: FC<SystemVoiceSelectionProps> = ({
|
||||
</div>
|
||||
</form>
|
||||
</Form>
|
||||
<div className="w-1/2 flex flex-col items-center">
|
||||
{Object.entries(AvatarTextures).map(([key, { src }]) => (
|
||||
<div className="" key={key}>
|
||||
<img src={src} alt="" className=" w-300 h-32 object-contain" />
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</main>
|
||||
);
|
||||
};
|
||||
|
Reference in New Issue
Block a user