| 1 |
/** |
| 2 |
* Location Section Component |
| 3 |
* Handles: Location & geography (destination, coordinates, landmarks) |
| 4 |
* |
| 5 |
* This is a placeholder - extract content from TripForm.tsx case 'location' |
| 6 |
*/ |
| 7 |
|
| 8 |
import React from "react"; |
| 9 |
import { MapPin } from "lucide-react"; |
| 10 |
import { TripFormSectionProps } from "../types"; |
| 11 |
import { SectionHeader } from "../shared/SectionHeader"; |
| 12 |
|
| 13 |
export const LocationSection: React.FC<TripFormSectionProps> = () => { |
| 14 |
// TODO: Extract location section content from TripForm.tsx (lines ~1876-2023) |
| 15 |
|
| 16 |
return ( |
| 17 |
<div className="space-y-4"> |
| 18 |
<SectionHeader |
| 19 |
icon={MapPin} |
| 20 |
title="Location & Geography" |
| 21 |
description="Specify where your trip takes place, including destinations, coordinates, and key landmarks" |
| 22 |
/> |
| 23 |
|
| 24 |
{/* TODO: Add location form fields */} |
| 25 |
<p className="text-sm text-gray-500"> |
| 26 |
Section content to be extracted from TripForm.tsx |
| 27 |
</p> |
| 28 |
</div> |
| 29 |
); |
| 30 |
}; |
| 31 |
|