import React from 'react'; import PublicNavbar from '../components/PublicNavbar'; import PublicFooter from '../components/PublicFooter'; import { Card } from '../components/ui/card'; const BoardOfDirectors = () => { const officers = [ { name: 'Lorraine Schroeder', title: 'President' }, { name: 'Lavita Marks', title: 'Vice President' }, { name: 'Janis Smith', title: 'Secretary' }, { name: 'Dawn Harrell', title: 'Treasurer' } ]; const boardMembers = [ { name: 'Danita Cole' }, { name: 'Roxanne Cherico' }, { name: 'Lucretia Copeland' }, { name: 'Julie Fischer' } ]; const DirectorCards = ({ title, members }) => { return (
{title && (

{title}

)}
{members.map((member, index) => { const { name, title } = typeof member === "string" ? { name: member, title: "" } : member; return (

{name}

{title && (

{title}

)}
); })}
); }; return (
{/* Hero Section */}

LOAF Board of Directors 2025

{/* Contact Info */}

For any questions or inquiries please email us at{' '} info@loaftx.org

{/* Board Members Section */}
{/* Officers Grid */} {/* Board Members Grid */}
{/* Join the Board Section */}
{/* content containter */}

Join the Board of Directors

Our elections take place at our December holiday social. Here are some things to know if you are thinking about serving on the Board of Directors.

{/* card */}
  1. Nominations are due by November 1. Nomination Form:{' '} Click Here
  2. Nominees must have been a member for at least 1 year, however it is possible to be elected prior to 1 year, but start the term on the 1 year anniversary.
  3. Officer positions are only available to current directors.
  4. Each director shall serve a 2-year term.
  5. The time commitment is approximately 1–2 hours per week.
  6. The tasks that directors perform depend on individual interests. Recent tasks include researching how to obtain an extra PO Box key, ordering Welcome Team name tags, taking pictures at events, researching new venues for holiday socials, and monitoring Facebook posts. For more information about director duties, see Article 2 of the bylaws in the Members Only section of the website:  https://loaftx.org/bylaws/
  7. Directors must attend Board meetings held on the second Thursday of each month at 6:30pm via Zoom.
  8. We are a fun group, and we would love for you to join us in providing this service for our community.
); }; export default BoardOfDirectors;