import React from 'react'; import { Link } from 'react-router-dom'; import { Button } from '../components/ui/button'; import { Card } from '../components/ui/card'; import PublicNavbar from '../components/PublicNavbar'; import PublicFooter from '../components/PublicFooter-kc'; const Landing = () => { // LOAF brand assets (local) const taglineImage = `${process.env.PUBLIC_URL}/tagline-image.png`; const shootingStar = `${process.env.PUBLIC_URL}/shooting-star.png`; const iconMeetGreet = `${process.env.PUBLIC_URL}/icon-meet-greet.png`; const iconSocials = `${process.env.PUBLIC_URL}/icon-socials.png`; const iconActive = `${process.env.PUBLIC_URL}/icon-active.png`; const heroLoaf = `${process.env.PUBLIC_URL}/hero-loaf.png`; const InfoCard = ({ iconSrc, infoTitle, description }) => (
{infoTitle}
{infoTitle}
{description}
); const infoCardData = [ { iconSrc: iconMeetGreet, infoTitle: 'Meet and Greet', description: (

The MEET and GREETs provide opportunities for prospective members to get acquainted with LOAF, have conversations with members, and ask the board of directors questions. They are held the 3rd Sunday of the month and usually take place at a restaurant or other fun places conducive to its purpose. Please email{' '} info@loaftx.org for upcoming times and locations.

), }, { iconSrc: iconSocials, infoTitle: 'Socials', description: (

Our social events provide opportunities for members to explore Houston and connect with other lesbians. Past social events include bowling, museums, painting lessons, sporting events, Miller Outdoor Theater, bingo and board games, pool parties, putt putt golf, camping and holiday get togethers. No matter your age or ability, there is something for everyone.

), }, { iconSrc: iconActive, infoTitle: 'Active LOAFers', description: (

ActiveLOAFers events provide members with opportunities to be physically active. Past activities have included hiking/walking in the park, swimming (or floating), pickleball, kayaking, bike riding, axe throwing, and strolling through the botanic gardens or the Arboretum.

), }, ]; return (
{/* Hero Section */}
LOAF

LOAF is supported by the Hollyfield Foundation

LOAF Tagline
{/* About Section */}

Welcome to LOAF

LOAF is Houston's social networking group for lesbians who are 50 years of age and older. LOAF hosts three main activities each month, Meet and Greets, Socials, and ActiveLOAFers. TheaterLOAFers coordinate events throughout the year.

Decorative element
{/* Feature Cards Section */}
{infoCardData.map((card) => ( ))}
{/* CTA Section */}

No matter your age or ability, there is something for everyone.

); }; export default Landing;