import { Card, CardContent } from "@/components/ui/card";
import { Input } from "@/components/ui/input";
import { Textarea } from "@/components/ui/textarea";
import { Button } from "@/components/ui/button";
export default function PersonaEmbedForms() {
const personas = [
"Strategic Visionary (VC)",
"Impact Investor",
"Innovation Journalist",
"Industry Analyst",
"Inspired Thinker",
"Future Collaborator"
];
return (
Get Involved with TruePhotonic
{personas.map((persona, index) => (
{persona} – Apply to Connect
Complete the form below to express your interest in collaborating or engaging with TruePhotonic.
))}
);
}