+
+ {transportation.companyTitle}
+
+
+
{transportation.fromCityTitle}
+
→
+
{transportation.toCityTitle}
+
+
+ {new Date(transportation.startDateTime).toLocaleDateString("en", {
+ hour: "2-digit",
+ minute: "2-digit",
+ })}
+
+
+```
+
+- Shows the **company name**.
+- Shows **From → To** cities in a neat way with an arrow (`→`) between them.
+- Shows the **departure time**:
+ - `startDateTime` is parsed using `new Date(...)`.
+ - `toLocaleDateString("en", { hour: "2-digit", minute: "2-digit" })` formats it to show just **hours and minutes**.
+
+---
+#### 2.3 Right Side — Company Logo
+
+```tsx
+