"use client"; import { UseFormReturn } from 'react-hook-form'; import { z } from 'zod'; import { heroFormSchema } from '@/lib/validators'; import { Input } from '@/components/ui/input'; import { Textarea } from '@/components/ui/textarea'; import { FormControl, FormField, FormItem, FormLabel, FormMessage, FormDescription } from '@/components/ui/form'; import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select'; type FormSchemaType = z.infer; interface IdentitySectionProps { form: UseFormReturn; } export const IdentitySection = ({ form }: IdentitySectionProps) => { return (

Core Identity

( Hero Name )} /> ( Gender )} /> ( Hero Color Click to pick a custom color. )} /> ( Hero Description