import { PageContainer } from "@/components/layout/page-container";
import { AuthFormShell } from "@/components/sections/auth/auth-form-shell";

export default function RegisterCompanyPage() {
  return (
    <PageContainer>
      <AuthFormShell
        mode="register-company"
        title="Kreirajte račun kao tvrtka"
        fields={[
          { id: "firstName", label: "Ime" },
          { id: "lastName", label: "Prezime" },
          { id: "email", label: "Email", type: "email" },
          { id: "phone", label: "Broj telefona" },
          { id: "address1", label: "Adresa za dostavu", fullWidth: true },
          { id: "postcode", label: "Poštanski broj" },
          { id: "city", label: "Grad" },
          { id: "companyName", label: "Naziv tvrtke" },
          { id: "oib", label: "OIB" },
          { id: "companyAddress", label: "Adresa tvrtke", fullWidth: true },
        ]}
        submitLabel="Registriraj se"
        secondaryHref="/login"
        secondaryLabel="Prijavi se"
        helperText="Već imate račun?"
      />
    </PageContainer>
  );
}
