Hurry up! Enjoy a 10% discount on all morning events using the promo code CUPOJOE. Offer ends this Friday.

import React from “react”;
import { Card, CardContent } from “@/components/ui/card”;
import { Button } from “@/components/ui/button”;
import { UserPlus } from “lucide-react”;

const features = [
{
title: “Budget-Friendly Trips”,
description:
“We offer smart and affordable options so you can enjoy every trip without going over your budget.”,
},
{
title: “Travel with Company”,
description:
“Find people with common interests and enjoy activities together. Experiences are better when shared!”,
},
{
title: “You Set the Schedule”,
description:
“Create your own travel plan – complete freedom to decide where, when, and with whom you’ll travel.”,
},
{
title: “A Sense of Security”,
description:
“If you feel uneasy traveling alone, especially in unfamiliar or risky destinations, you can find travel companions and feel safer.”,
},
{
title: “Lifetime Membership for Just $200”,
description:
“A one-time payment – no monthly fees.”,
},
{
title: “Refer a Friend & Earn $80”,
description:
“Invite friends to join and earn rewards when they sign up through your referral!”,
},
];

export default function FindCompanyForTravel() {
return (

Why Choose FindCompanyForTravel?

Connect, travel, and create lasting memories without breaking your budget.

Travel buddies

{features.map((feature, index) => (

{feature.title}

{feature.description}



))}

Contact us for more information

);
}