"use client"; import { Button } from "@/components/ui/button"; import { Input } from "@/components/ui/input"; import { Label } from "@/components/ui/label"; import { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectTrigger, SelectValue, } from "@/components/ui/select"; import { createSupabaseClient } from "@/lib/supabase/clientComponentClient"; import { useEffect, useState } from "react"; export default function Apply() { let supabase = createSupabaseClient(); const [industry, setIndustry] = useState([]); const [isInUS, setIsInUS] = useState(""); const [isForSale, setIsForSale] = useState(""); const [isGenerating, setIsGenarting] = useState(""); const [pitch, setPitch] = useState(""); const communitySize = [ "N/A", "0-5K", "5-10K", "10-20K", "20-50K", "50-100K", "100K+", ]; const fetchIndustry = async () => { let { data: BusinessType, error } = await supabase .from("BusinessType") .select("value"); if (error) { console.error(error); } else { if (BusinessType) { console.table(); setIndustry(BusinessType.map((item) => item.value)); } } }; useEffect(() => { fetchIndustry(); }, []); return (

Apply to raise on B2DVentures

All information submitted in this application is for internal use only and is treated with the utmost{" "}

confidentiality. Companies may apply to raise with B2DVentures more than once.

About your company

All requested information in this section is required.

{/* form */} {/* company name */}
This should be the name your company uses on your
website and in the market.
{/* industry */}
Choose the industry that best aligns with your business.
{/* How much money has your company raised to date? */}
The sum total of past financing, including angel or venture{" "}
capital, loans, grants, or token sales.
{/* Is your company incorporated in the United States? */}
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.
{/* Is your product available (for sale) in market? */}
Only check this box if customers can access, use, or buy your{" "}
product today.
{/* Is your company generating revenue?*/}
Only check this box if your company is making money.
Please elaborate on revenue and other traction below.
{/* Pitch deck */}
Your pitch deck and other application info will be used for{" "}
internal purposes only.
Please make sure this document is publicly accessible. This can{" "}
be a DocSend, Box, Dropbox, Google Drive or other link.
{/* What's the rough size of your community? */}
Include your email list, social media following (i.e. Instagram,{" "}
Discord, Facebook, Twitter, TikTok). We’d like to understand the
rough size of your current audience.
{/* Submit */}
); }