diff --git a/src/app/business/apply/page.tsx b/src/app/business/apply/page.tsx
index 309900c..a6bf7a3 100644
--- a/src/app/business/apply/page.tsx
+++ b/src/app/business/apply/page.tsx
@@ -24,6 +24,7 @@ import {
} from "@/components/ui/tooltip";
import { z } from "zod";
import { zodResolver } from "@hookform/resolvers/zod";
+import { Selector } from "@/components/selector";
export default function Apply() {
const formSchema = z.object({
@@ -237,104 +238,66 @@ export default function Apply() {
{/* Is your company incorporated in the United States? */}
-
-
-
-
-
-
-
-
-
+
+ Is your company incorporated in the
+ United States?
+ >
+ }
+ name="isInUS"
+ choice1="Yes"
+ choice2="No"
+ handleFunction={handleFieldChange}
+ description={
+ <>
Only companies that are incorporated or formed in the US are{" "}
eligible to raise via Reg CF. If your company is incorporated{" "}
outside the US, we still encourage you to apply.
-
-
-
+ >
+ }
+ value={isInUS}
+ />
{/* Is your product available (for sale) in market? */}
-
-
-
-
-
-
-
-
+
+ Is your product available (for sale)
+ in market?
+ >
+ }
+ name="isForSale"
+ choice1="Yes"
+ choice2="No"
+ handleFunction={handleFieldChange}
+ description={
+ <>
Only check this box if customers can access, use, or buy your{" "}
product today.
-
-
-
+ >
+ }
+ value={isForSale}
+ />
{/* Is your company generating revenue?*/}
-
-
-
-
-
-
-
-
+ Is your company generating revenue?>}
+ name="isGenerating"
+ choice1="Yes"
+ choice2="No"
+ handleFunction={handleFieldChange}
+ description={
+ <>
Only check this box if your company is making money.
Please elaborate on revenue and other traction below.
-
-