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 = [ 'Danita Cole', 'Roxanne Cherico', 'Lucretia Copeland', 'Julie Fischer' ]; return (
{/* Hero Section with Contact */}

LOAF Board of Directors 2025

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

{/* Officers Grid */}

Officers

{officers.map((officer, index) => (

{officer.name}

{officer.title}

))}
{/* Board Members Grid */}

Board of Directors

{boardMembers.map((member, index) => (

{member}

))}
{/* Join the Board Section */}

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.

  1. Nominations are due by November 1. Nomination Form:{' '} Click Here
  2. Nominees must have been a member for at least 1 year and current with their dues.
  3. Officer positions are only available to current directors.
  4. Each director shall serve a 2 year term.
  5. The time commitment is 1-2 hours per week.
  6. The tasks that directors perform depend on individual interests, skills, and time available.
  7. Directors must attend Board meetings which are held 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;