general category trip

This commit is contained in:
2026-05-07 18:47:45 +07:00
parent 12f13f2049
commit 49aa64c522
25 changed files with 904 additions and 386 deletions
@@ -5,7 +5,7 @@ import { formatTripCalendarDateRangeLong } from "@/lib/trip-dates";
interface ProfileTripRowProps {
href: string;
title: string;
mountain: string;
destination: string;
date: Date;
endDate: Date | null;
rightSlot?: ReactNode;
@@ -14,7 +14,7 @@ interface ProfileTripRowProps {
export function ProfileTripRow({
href,
title,
mountain,
destination,
date,
endDate,
rightSlot,
@@ -26,7 +26,7 @@ export function ProfileTripRow({
>
<div className="min-w-0 flex-1">
<p className="truncate text-sm font-semibold text-neutral-800">{title}</p>
<p className="truncate text-xs text-neutral-500">{mountain}</p>
<p className="truncate text-xs text-neutral-500">{destination}</p>
<p className="mt-0.5 text-[11px] text-neutral-400 sm:text-xs">
{formatTripCalendarDateRangeLong(date, endDate)}
</p>